We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac465f commit 1bbac3fCopy full SHA for 1bbac3f
.github/workflows/release.yml
@@ -15,6 +15,14 @@ jobs:
15
16
prepare-docker:
17
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
26
27
build-emacs:
28
needs:
@@ -26,14 +34,18 @@ jobs:
34
- x11
35
- pgtk
36
- nox
37
38
39
29
40
30
41
uses: ./.github/workflows/_build-emacs.yml
31
42
with:
32
43
name: ${{ inputs.version }}
44
33
45
branch: emacs-${{ inputs.version }}
46
build_gui: ${{ matrix.build_gui }}
47
build_native_comp: aot
- do_test: true
48
+ do_test: ${{ matrix.arch == 'x86_64' }}
49
do_release: true
50
release_name: Release ${{ inputs.version }}
51
release_latest: true
0 commit comments