]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Tweak build.yaml
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 6 Jan 2021 18:54:53 +0000 (19:54 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 6 Jan 2021 18:54:53 +0000 (19:54 +0100)
.github/workflows/build.yaml

index a5cbadd6dd19940d1e4e07baac87a7475114f1a3..0e096f23d64fa81f17bf44b6e3f57a4118caf0cd 100644 (file)
@@ -286,21 +286,21 @@ jobs:
         if: matrix.config.apt_get != ''
         run: sudo apt-get update && sudo apt-get install ${{ matrix.config.apt_get }}
 
-      - name: Prepare Windows Environment (Visual Studio)
+      - name: Prepare Windows environment (Visual Studio)
         if: runner.os == 'Windows'
         uses: ilammy/msvc-dev-cmd@v1.5.0
         with:
           arch: ${{ matrix.config.msvc_arch }}
 
-      - name: Prepare Windows Environment (Clang)
+      - name: Prepare Windows environment (Clang)
         if: runner.os == 'Windows'
         shell: powershell
         run: |
           $ErrorActionPreference = 'Stop'
 
-          # The test suite currently requires that the compiler specified by the "CC"
-          # env variable is on a path without spaces. Provide that by creating a
-          # junction from ~/opt/llvm to the Visual Studio path.
+          # The test suite currently requires that the compiler specified by the
+          # "CC" environment variable is on a path without spaces. Provide that
+          # by creating a junction from ~/opt/llvm to the Visual Studio path.
           $null = New-Item `
             -Path "${HOME}\opt\llvm" `
             -ItemType Junction `
@@ -332,7 +332,7 @@ jobs:
           ci/build || rc=$?
           echo "::set-output name=exit_status::$rc"
           exit $rc
-        # Ctest exits with a return code of `8` on test failure.
+        # CTest exits with return code 8 on test failure.
         continue-on-error: ${{ matrix.config.allow_test_failures == true &&
           steps.build-and-test.outputs.exit_status == 8 }}