From 08b160c2932a44adedd9411bd882bc7ef41ea270 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Mon, 7 Nov 2022 13:32:41 -0500 Subject: [PATCH] style: strip trailing whitespace from `ci.yml` --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ad04a7f8c..0561adeb80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ env: # entirely on clippy jobs and reduce it to line-numbers # only for ones where we run tests. # -# Additionally, we disable incremental builds entirely +# Additionally, we disable incremental builds entirely # as our caching system doesn't actually cache our crates. # It adds overhead to the build and another point of failure. @@ -38,7 +38,7 @@ jobs: os: windows-2022 target: x86_64-pc-windows-msvc kind: native - + # MacOS - name: MacOS x86_64 os: macos-12 @@ -49,7 +49,7 @@ jobs: os: macos-12 target: aarch64-apple-darwin kind: native - + # IOS - name: IOS aarch64 os: macos-12 @@ -175,7 +175,7 @@ jobs: - name: Linux x86_64 os: ubuntu-22.04 backends: vulkan gl - + name: Test ${{ matrix.name }} runs-on: ${{ matrix.os }} @@ -195,24 +195,24 @@ jobs: uses: taiki-e/install-action@nextest - name: install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov - + - name: install swiftshader if: matrix.os == 'ubuntu-22.04' shell: bash run: | set -e - + mkdir -p swiftshader curl -LsSf https://github.com/gfx-rs/ci-build/releases/latest/download/swiftshader-linux-x86_64.tar.xz | tar -xf - -C swiftshader echo "LD_LIBRARY_PATH=$PWD/swiftshader" >> $GITHUB_ENV - + - name: install llvmpipe, vulkan sdk if: matrix.os == 'ubuntu-22.04' shell: bash run: | set -e - + sudo apt-get update -y -qq # vulkan sdk @@ -264,7 +264,7 @@ jobs: uses: codecov/codecov-action@v3 with: files: lcov.info - + doctest: name: Doctest runs-on: ubuntu-22.04