diff --git a/.github/workflows/build_test_deploy.yml b/.github/workflows/build_test_deploy.yml index df16548094a40..cf262775ebc24 100644 --- a/.github/workflows/build_test_deploy.yml +++ b/.github/workflows/build_test_deploy.yml @@ -671,7 +671,7 @@ jobs: testFirefox: name: Test Firefox (production) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: [build, build-native-test] timeout-minutes: 10 env: @@ -696,7 +696,7 @@ jobs: testSafari: name: Test Safari (production) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: [build, build-native-test] timeout-minutes: 15 env: @@ -725,7 +725,7 @@ jobs: testFirefoxNode18: name: Test Firefox Node.js 18 - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: [build, testFirefox, build-native-test] timeout-minutes: 10 env: @@ -983,7 +983,7 @@ jobs: test-wasm: name: Test the wasm build - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 15 needs: [build, build-native-test, build-wasm-dev] diff --git a/.github/workflows/pull_request_stats.yml b/.github/workflows/pull_request_stats.yml index 537f17a31cd99..9efbddd1bdd13 100644 --- a/.github/workflows/pull_request_stats.yml +++ b/.github/workflows/pull_request_stats.yml @@ -63,14 +63,14 @@ jobs: # We will not get exact match, but doc says # "If there are multiple partial matches for a restore key, the action returns the most recently created cache." # So we get latest cache - - name: Cache built files - uses: actions/cache@v3 - timeout-minutes: 5 - with: - path: ./packages/next-target - key: next-swc-cargo-cache-ubuntu-latest--${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - next-swc-cargo-cache-ubuntu-latest + # - name: Cache built files + # uses: actions/cache@v3 + # timeout-minutes: 5 + # with: + # path: ./packages/next-target + # key: next-swc-cargo-cache-ubuntu-latest--${{ hashFiles('**/Cargo.lock') }} + # restore-keys: | + # next-swc-cargo-cache-ubuntu-latest - name: Build in docker uses: addnab/docker-run-action@v3 @@ -88,9 +88,6 @@ jobs: turbo run build-native --cache-dir=".turbo" -- --target x86_64-unknown-linux-gnu && strip packages/next-swc/native/next-swc.*.node - - run: sudo chown -R $USER:$GROUP ./packages/next-swc/target - if: ${{ steps.docs-change.outputs.DOCS_CHANGE == 'nope' }} - - name: Upload artifact uses: actions/upload-artifact@v3 with: