-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
Signed-off-by: Guillaume W. Bres <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,3 +90,33 @@ jobs: | |
with: | ||
command: build | ||
args: -p crx2rnx --all-features --release --verbose | ||
|
||
macos-build: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
name: Install Rust | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: actions-rs/cargo@v1 | ||
name: RINEXCLI | ||
with: | ||
command: build | ||
args: -p rinex-cli --all-features --release --verbose | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
gwbres
Author
Collaborator
|
||
- uses: actions-rs/cargo@v1 | ||
name: RNX2CGGTS | ||
with: | ||
command: build | ||
args: -p rnx2cggtts --all-features --release --verbose | ||
- uses: actions-rs/cargo@v1 | ||
name: RNX2CRNX | ||
with: | ||
command: build | ||
args: -p rnx2crx --all-features --release --verbose | ||
- uses: actions-rs/cargo@v1 | ||
name: CRX2RNX | ||
with: | ||
command: build | ||
args: -p crx2rnx --all-features --release --verbose |
Can we try adding
--target aarch64-apple-darwin
to args under build? That would build for ARM chips.