clean up .PHONY and all
All checks were successful
Rust / build-gnu-apt (pull_request) Successful in 5m20s
Rust / build-size-gnu-unstable (pull_request) Successful in 1m14s

This commit is contained in:
Vinzenz Schroeter 2025-05-28 17:21:08 +02:00
parent a4699b9bc8
commit 4d9c9e2ac4
3 changed files with 21 additions and 20 deletions

View file

@ -36,9 +36,9 @@ jobs:
run: output=$(git status --porcelain) && [ -z "$output" ]
- name: build example -- glibc release
run: cd example && make clean && make LIBC=gnu LINK=dynamic PROFILE=release
run: cd example && make -r clean-all && make -r LIBC=gnu LINK=dynamic PROFILE=release
- name: build example -- glibc debug
run: cd example && make clean && make LIBC=gnu LINK=dynamic PROFILE=debug
run: cd example && make -r clean-all && make -r LIBC=gnu LINK=dynamic PROFILE=debug
build-size-gnu-unstable:
runs-on: ubuntu-latest
@ -53,5 +53,5 @@ jobs:
run: rustup toolchain install nightly -t aarch64-unknown-linux-gnu -c rust-src --no-self-update
- name: build example -- glibc size_optimized
run: cd example && make clean
&& make LIBC=gnu LINK=dynamic PROFILE=size_optimized CARGO="rustup run nightly cargo" LTO=1
run: cd example && make clean-all -r
&& make -r LIBC=gnu LINK=dynamic PROFILE=size_optimized CARGO="rustup run nightly cargo" LTO=1