Skip to content

Commit ca91f33

Browse files
committed
ci: move back to x86 runners
The wait time is just too high
1 parent 600ca64 commit ca91f33

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/nix.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66

77
jobs:
88
build:
9-
runs-on: [ubuntu-latest, ubuntu-24.04-arm]
9+
# runs-on: [ubuntu-latest, ubuntu-24.04-arm]
10+
# wait times for `-arm` are insane. Let's see how
11+
# good cross-compilation works with nix
12+
runs-on: [ubuntu-latest]
1013
permissions:
1114
contents: write # write required for action-gh-release
1215
id-token: write
@@ -23,11 +26,11 @@ jobs:
2326
# `cannot write uid_map: Operation not permitted`
2427
# - name: Test appimage
2528
# run: ./result --help
26-
- name: Rename AppImage
27-
if: startsWith(github.ref, 'refs/tags/')
28-
run: cp ./result isd.${{ runner.arch }}.AppImage
29-
- name: Release AppImage
30-
uses: softprops/action-gh-release@v2
31-
if: startsWith(github.ref, 'refs/tags/')
32-
with:
33-
files: isd.${{ runner.arch}}.AppImage
29+
# - name: Rename AppImage
30+
# if: startsWith(github.ref, 'refs/tags/')
31+
# run: cp ./result isd.${{ runner.arch }}.AppImage
32+
# - name: Release AppImage
33+
# uses: softprops/action-gh-release@v2
34+
# if: startsWith(github.ref, 'refs/tags/')
35+
# with:
36+
# files: isd.${{ runner.arch}}.AppImage

0 commit comments

Comments
 (0)