Skip to content

Commit

Permalink
Add supported platforms build test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
anacrolix committed Jul 18, 2024
1 parent 7db70c5 commit ee6c1e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,9 @@ sync-repo dest *args:

flamegraph-macos bench_filter:
CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph --root --bench possum -- --bench '{{ bench_filter }}'

build-supported-targets:
for a in `cat supported-targets`; do just build-target "$a"; done

build-target target:
cargo build --release --target {{target}}
5 changes: 5 additions & 0 deletions supported-targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
x86_64-pc-windows-gnu
x86_64-unknown-linux-gnu
aarch64-unknown-linux-gnu
arm-unknown-linux-gnueabi
aarch64-apple-darwin

0 comments on commit ee6c1e4

Please sign in to comment.