Skip to content

Commit

Permalink
change command, remove artifact uploading from build
Browse files Browse the repository at this point in the history
  • Loading branch information
jupyterkat committed Nov 9, 2024
1 parent 22226ab commit 31c5606
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,4 @@ jobs:
sudo apt update
sudo apt install g++-multilib -y
- name: Build auxmos
run: cargo build --target=i686-unknown-linux-gnu --release --features "citadel_reactions katmos"
- uses: actions/upload-artifact@v4
with:
name: Linux compile
path: target/i686-unknown-linux-gnu/release/libauxmos.*
run: cargo build --target=i686-unknown-linux-gnu --release --features citadel_reactions
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check
- name: Check auxmos build
run: cargo check --target=i686-unknown-linux-gnu --release --features "citadel_reactions katmos"
run: cargo check --target=i686-unknown-linux-gnu --release --features citadel_reactions
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,23 @@ jobs:
with:
toolchain: stable
command: build
args: --target i686-pc-windows-msvc --release --features katmos
args: --target i686-pc-windows-msvc --release
if: matrix.os == 'windows-latest'

- name: Build auxmos (Ubuntu)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: build
args: --target i686-unknown-linux-gnu --release --features katmos
args: --target i686-unknown-linux-gnu --release
if: matrix.os == 'ubuntu-20.04'

- name: Create bindings (Ubuntu)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: test
args: --target i686-unknown-linux-gnu --release --features katmos --package auxmos --lib -- generate_binds --exact --show-output
args: --target i686-unknown-linux-gnu --release --package auxmos --lib -- generate_binds --exact --show-output
if: matrix.os == 'ubuntu-20.04'

- name: Generate build provenance (Binaries)
Expand Down

0 comments on commit 31c5606

Please sign in to comment.