Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump gix from 0.61.0 to 0.63.0 #15

Closed
wants to merge 12 commits into from
15 changes: 9 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ on:
pull_request:
branches:
- master
workflow_dispatch:

jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/setup-nasm@v1

- uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -25,10 +28,10 @@ jobs:
- name: Rustfmt
run: cargo fmt -- --check

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

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Windows Build
path: |
Expand Down Expand Up @@ -69,10 +72,10 @@ jobs:
env:
BYOND_BIN: /home/runner/BYOND/byond/bin

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

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Linux Build
path: |
Expand Down
Loading