Skip to content

Commit 1bbac3f

Browse files
committed
build different arch in release
1 parent 7ac465f commit 1bbac3f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ jobs:
1515

1616
prepare-docker:
1717
uses: ./.github/workflows/_prepare-docker.yml
18+
with:
19+
arch: ${{ matrix.arch }}
20+
secrets: inherit
21+
strategy:
22+
matrix:
23+
arch:
24+
- x86_64
25+
- aarch64
1826

1927
build-emacs:
2028
needs:
@@ -26,14 +34,18 @@ jobs:
2634
- x11
2735
- pgtk
2836
- nox
37+
arch:
38+
- x86_64
39+
- aarch64
2940

3041
uses: ./.github/workflows/_build-emacs.yml
3142
with:
3243
name: ${{ inputs.version }}
44+
arch: ${{ matrix.arch }}
3345
branch: emacs-${{ inputs.version }}
3446
build_gui: ${{ matrix.build_gui }}
3547
build_native_comp: aot
36-
do_test: true
48+
do_test: ${{ matrix.arch == 'x86_64' }}
3749
do_release: true
3850
release_name: Release ${{ inputs.version }}
3951
release_latest: true

0 commit comments

Comments
 (0)