Skip to content

Commit ee6c1e4

Browse files
committed
Add supported platforms build test matrix
1 parent 7db70c5 commit ee6c1e4

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

justfile

+6
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,9 @@ sync-repo dest *args:
1717

1818
flamegraph-macos bench_filter:
1919
CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph --root --bench possum -- --bench '{{ bench_filter }}'
20+
21+
build-supported-targets:
22+
for a in `cat supported-targets`; do just build-target "$a"; done
23+
24+
build-target target:
25+
cargo build --release --target {{target}}

supported-targets

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
x86_64-pc-windows-gnu
2+
x86_64-unknown-linux-gnu
3+
aarch64-unknown-linux-gnu
4+
arm-unknown-linux-gnueabi
5+
aarch64-apple-darwin

0 commit comments

Comments
 (0)