Skip to content

Commit

Permalink
Improve CI build checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed May 14, 2024
1 parent a924288 commit 5a10b9a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,18 @@ jobs:
# with:
# platform: x64
# packages: pkg-config libvncserver-devel
- uses: actions-rs/cargo@v1
- name: Build with without vnc and without alpha
uses: actions-rs/cargo@v1
with:
command: build
args: --target=${{ matrix.target }} --no-default-features
- uses: actions-rs/cargo@v1
- name: Build with with vnc and without alpha
uses: actions-rs/cargo@v1
with:
command: build
args: --target=${{ matrix.target }} --no-default-features --features vnc
- name: Build with with all features
uses: actions-rs/cargo@v1
with:
command: build
args: --target=${{ matrix.target }} --all-features

0 comments on commit 5a10b9a

Please sign in to comment.