-
Notifications
You must be signed in to change notification settings - Fork 30
38 lines (32 loc) · 1.42 KB
/
no_std.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
## Add tests to ensure no-std crates are no-std
name: Build no std
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
# Target below does not have a standard library
- run: rustup target add x86_64-unknown-uefi
# Below targets run in no-std environments
- run: cargo build -p zune-core --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-inflate --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-jpeg --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-png --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-ppm --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-qoi --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-farbfeld --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-psd --target x86_64-unknown-uefi --no-default-features
- run: cargo build -p zune-bmp --target x86_64-unknown-uefi --no-default-features