Skip to content

Commit 3c5fb35

Browse files
authored
revert: ci: use ubuntu-latest for release workflow (#282) (#283)
This reverts commit 4dad26a. This commit switched to using ubuntu-latest for the release workflow instead of dealing with firewall issues on the blitzar vm runner. However, the release workflow now takes over an hour, because it needs to build cuda from scratch when entering the nix environment instead of taking advantage of the nix store (cache) on the blitzar vm runner. It will likely be faster to just squash the firewall issues.
1 parent 4dad26a commit 3c5fb35

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
issues: write
1616
pull-requests: write
1717
name: Build Publish Library - Linux-x86_64
18-
runs-on: ubuntu-latest
18+
runs-on: public-blitzar-T4-gpu-vm
1919
timeout-minutes: 600
2020
needs: [test-check-lint]
2121
environment: deploy #!! DO NOT CHANGE THIS LINE !! #
@@ -25,13 +25,10 @@ jobs:
2525

2626
- run: git config --global --add safe.directory $(realpath .)
2727

28-
- name: Install nix
29-
uses: cachix/install-nix-action@v31
30-
3128
- name: Semantic release
3229
run: |
33-
nix develop --extra-experimental-features "nix-command flakes" --command npm install semantic-release
34-
TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --extra-experimental-features "nix-command flakes" --command npx semantic-release
30+
nix develop --command npm install semantic-release
31+
TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --command npx semantic-release
3532
env:
3633
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3734
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

0 commit comments

Comments
 (0)