]> Sergey Matveev's repositories - btrtrc.git/blobdiff - .github/workflows/go.yml
Bump CI 1.19 go versions to 1.21
[btrtrc.git] / .github / workflows / go.yml
index 3ff16fbe51e4b1f34815d773e294d898c11d689c..36d02b2fa53b0c3638ee1a801d6916472b480314 100644 (file)
@@ -9,7 +9,7 @@ jobs:
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        go-version: [ '1.19', '1.20' ]
+        go-version: [ '1.21', '1.20' ]
         os: [windows-latest, macos-latest, ubuntu-latest]
       fail-fast: false
     steps:
@@ -63,15 +63,18 @@ jobs:
     - name: Some packages compile for WebAssembly
       run: GOOS=js GOARCH=wasm go build . ./storage ./tracker/...
 
-  torrentfs:
-    runs-on: ubuntu-latest
+  torrentfs-linux:
+    timeout-minutes: 5
+    runs-on: ${{ matrix.os }}
     strategy:
       matrix:
         go-version: [ '1.20' ]
+        os: [ubuntu-latest]
       fail-fast: false
     steps:
     - uses: actions/checkout@v2
     - uses: ./.github/actions/go-common
+        
     - name: Install godo
       run: |
         # Need master for cross-compiling fix
@@ -84,3 +87,27 @@ jobs:
     - name: torrentfs end-to-end test
       # Test on 386 for atomic alignment and other bad 64-bit assumptions
       run: GOARCH=386 fs/test.sh
+
+# Github broke FUSE on MacOS, I'm not sure what the state is.
+
+#  torrentfs-macos:
+#    timeout-minutes: 15
+#    runs-on: ${{ matrix.os }}
+#    strategy:
+#      matrix:
+#        go-version: [ '1.20' ]
+#        os: [macos-latest]
+#      fail-fast: false
+#    steps:
+#    - uses: actions/checkout@v2
+#    - uses: ./.github/actions/go-common
+#
+#    - run: brew install macfuse pv md5sha1sum bash
+#
+#    - name: Install godo
+#      run: go install -v github.com/anacrolix/godo@master
+#
+#    - name: torrentfs end-to-end test
+#      run: fs/test.sh
+#      # Pretty sure macos on GitHub CI has issues with the fuse driver now.
+#      continue-on-error: true