Skip to content

Commit

Permalink
Re-add all features release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeow committed Dec 28, 2023
1 parent 31bd2c7 commit 8bcd063
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,23 @@ jobs:
- name: Rustfmt
run: cargo fmt -- --check

- name: Build (release) (all features)
run: cargo build --target i686-pc-windows-msvc --locked --release --features all

- uses: actions/upload-artifact@v3
with:
name: Windows Build (All Features)
path: |
target/i686-pc-windows-msvc/release/rust_g.dll
target/i686-pc-windows-msvc/release/rust_g.pdb
target/rust_g.dm
- name: Build (release) (default features)
run: cargo build --target i686-pc-windows-msvc --locked --release

- uses: actions/upload-artifact@v3
with:
name: Windows Build
name: Windows Build (Default Features)
path: |
target/i686-pc-windows-msvc/release/rust_g.dll
target/i686-pc-windows-msvc/release/rust_g.pdb
Expand Down Expand Up @@ -60,8 +71,13 @@ jobs:
- name: Check (all features)
run: cargo check --target i686-unknown-linux-gnu --locked --features all

- name: Build (Debug) (all features)
- name: Build (release) (all features)
run: cargo build --target i686-unknown-linux-gnu --locked --features all

- uses: actions/upload-artifact@v3
with:
name: full_librust_g.so
path: target/i686-unknown-linux-gnu/release/librust_g.so

- name: Run tests (all features)
run: cargo test --target i686-unknown-linux-gnu --locked --features all
Expand Down

0 comments on commit 8bcd063

Please sign in to comment.