]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
github: Fix Windows build
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 31 May 2023 14:00:23 +0000 (16:00 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 1 Jun 2023 07:54:40 +0000 (09:54 +0200)
Also update some Actions to get rid of some warnings.

Fixes #11052

.github/workflows/test.yml
magefile.go

index 26156ec9472f15ceaf4f342297abfa1f9eb3f6e4..f23dde8031ea70ab61f08bd442354b101dbbb092 100644 (file)
@@ -16,14 +16,14 @@ jobs:
   test:
     strategy:
       matrix:
-        go-version: [1.19.x,1.20.x]
+        go-version: [1.19.x, 1.20.x]
         os: [ubuntu-latest, macos-latest, windows-latest]
     runs-on: ${{ matrix.os }}
     steps:
     - name: Checkout code
-      uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
+      uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
     - name: Install Go
-      uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
+      uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
       with:
         go-version: ${{ matrix.go-version }}
         check-latest: true
@@ -41,7 +41,7 @@ jobs:
       with:
         python-version: '3.x'
     - name: Install Mage
-      run: go install github.com/magefile/mage@07afc7d24f4d6d6442305d49552f04fbda5ccb3e
+      run: go install github.com/magefile/mage@v1.15.0
     - name: Install asciidoctor
       uses: reitzig/actions-asciidoctor@7570212ae20b63653481675fb1ff62d1073632b0
     - name: Install docutils
@@ -62,7 +62,7 @@ jobs:
     - run: pandoc -v
     - if: matrix.os == 'windows-latest'
       run: |
-        Choco-Install -PackageName mingw -ArgumentList "--version","10.2.0","--allow-downgrade"
+        Choco-Install -PackageName mingw -ArgumentList "--version","12.2.0","--allow-downgrade"
     - if: matrix.os == 'ubuntu-latest'
       name: Install dart-sass-embedded Linux
       run: |
@@ -86,9 +86,16 @@ jobs:
         curl -LJO "https://github.com/sass/dart-sass-embedded/releases/download/${env:DART_SASS_VERSION}/sass_embedded-${env:DART_SASS_VERSION}-windows-x64.zip";
         Expand-Archive -Path "sass_embedded-${env:DART_SASS_VERSION}-windows-x64.zip" -DestinationPath .;
         echo  "$env:GITHUB_WORKSPACE/sass_embedded/" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf-8 -Append
-    - name: Check
+    - if: matrix.os != 'windows-latest'
+      name: Check
       run: |
         mage -v check;
       env:
         HUGO_BUILD_TAGS: extended
-
+    - if: matrix.os == 'windows-latest'
+      # See issue #11052. We limit the build to regular test (no -race flag) on Windows for now.
+      name: Test
+      run: |
+        mage -v test;
+      env:
+        HUGO_BUILD_TAGS: extended
index bd9c5b830c532c58bc7c8fcc39fb4f2535ace4e4..2fc2c7f7515f95dd538af2e0e0ec3cf149a00aad 100644 (file)
@@ -174,13 +174,13 @@ func Test386() error {
 // Run tests
 func Test() error {
        env := map[string]string{"GOFLAGS": testGoFlags()}
-       return runCmd(env, goexe, "test", "./...", buildFlags(), "-tags", buildTags())
+       return runCmd(env, goexe, "test", "./...", "-tags", buildTags())
 }
 
 // Run tests with race detector
 func TestRace() error {
        env := map[string]string{"GOFLAGS": testGoFlags()}
-       return runCmd(env, goexe, "test", "-race", "./...", buildFlags(), "-tags", buildTags())
+       return runCmd(env, goexe, "test", "-race", "./...", "-tags", buildTags())
 }
 
 // Run gofmt linter