mirror of
https://github.com/plexusorg/IBConverter.git
synced 2024-12-22 07:45:07 +00:00
Merge branch 'rust' of https://github.com/plexusorg/IBConverter into rust
This commit is contained in:
commit
5773d7cbfc
1 changed files with 16 additions and 0 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -35,3 +35,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: IBConverter-macOS
|
name: IBConverter-macOS
|
||||||
path: target/release/IBConverter
|
path: target/release/IBConverter
|
||||||
|
build_linux:
|
||||||
|
name: IBConverter Linux
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
args: --release --all-features
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: IBConverter-Linux
|
||||||
|
path: target/release/IBConverter
|
||||||
|
|
Loading…
Reference in a new issue