Skip to content

Commit 189b618

Browse files
committed
HACK: only build x864-64 in CI
1 parent 31efc3b commit 189b618

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
with:
5353
targets: |
5454
x86_64-unknown-linux-gnu
55-
aarch64-unknown-linux-gnu
55+
# HACK
56+
# aarch64-unknown-linux-gnu
5657

5758
- name: Setup sccache
5859
uses: mozilla-actions/[email protected]
@@ -89,14 +90,16 @@ jobs:
8990
cargo zigbuild \
9091
--release \
9192
--target x86_64-unknown-linux-gnu.2.17 \
92-
--target aarch64-unknown-linux-gnu.2.17 \
9393
--no-default-features \
9494
--features dist \
9595
-p mas-cli
96+
# HACK
97+
# --target aarch64-unknown-linux-gnu.2.17 \
9698

9799
- name: Create one archive per architecture
98100
run: |
99-
for arch in x86_64 aarch64; do
101+
# HACK for arch in x86_64 aarch64; do
102+
for arch in x86_64; do
100103
# Create one directory per architecture
101104
mkdir -p dist/${arch}/share/
102105
# Copy the artifacts to the right place
@@ -121,8 +124,9 @@ jobs:
121124
with:
122125
name: binaries
123126
path: |
124-
mas-cli-aarch64-linux.tar.gz
125127
mas-cli-x86_64-linux.tar.gz
128+
# HACK
129+
# mas-cli-aarch64-linux.tar.gz
126130

127131
build-image:
128132
name: Build and push Docker image

0 commit comments

Comments
 (0)