From 2ccec294c7e07fa9ac36b4139dd7bfd0fdb1c77d Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sat, 3 May 2025 19:36:51 +0200 Subject: [PATCH] ci builds on arm --- .github/workflows/rust.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d6e58ca..0827abb 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -41,14 +41,14 @@ jobs: run: cargo build - name: build example -- glibc release - run: cd example && make clean && make PROFILE=release + run: cd example && make clean && make PROFILE=release TARGET=aarch64-unknown-linux-gnu - name: build example -- glibc debug - run: cd example && make clean && make PROFILE=debug + run: cd example && make clean && make PROFILE=debug TARGET=aarch64-unknown-linux-gnu - name: build example -- glibc size-optimized - run: cd example && make clean && make PROFILE=size-optimized + run: cd example && make clean && make PROFILE=size-optimized TARGET=aarch64-unknown-linux-gnu - name: build example -- musl release - run: cd example && make clean && make PROFILE=release MUSL=1 + run: cd example && make clean && make PROFILE=release MUSL=1 TARGET=aarch64-unknown-linux-musl - name: build example -- musl debug - run: cd example && make clean && make PROFILE=debug MUSL=1 + run: cd example && make clean && make PROFILE=debug MUSL=1 TARGET=aarch64-unknown-linux-musl - name: build example -- musl size-optimized - run: cd example && make clean && make PROFILE=size-optimized MUSL=1 + run: cd example && make clean && make PROFILE=size-optimized MUSL=1 LTO=1 TARGET=aarch64-unknown-linux-musl