Skip to content
Snippets Groups Projects
Verified Commit 5b73ec1e authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

chore: new SDL build

parent 2b32975f
No related branches found
No related tags found
No related merge requests found
Pipeline #2524 passed
......@@ -80,3 +80,42 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Build and lint Web code
run: cd frontends/web && npm install && npm run build && npm run lint
build-sdl:
name: Build SDL
timeout-minutes: 10
strategy:
matrix:
rust-version: [
"1.56.1",
"1.60.0",
"1.61.0",
"1.62.0",
"1.63.0",
"1.64.0",
"1.65.0",
"1.66.0",
"1.67.0",
"1.68.0",
"latest"
]
runs-on: ubuntu-latest
container: rust:${{ matrix.rust-version }}
steps:
- name: Checkout code from repository
uses: actions/checkout@v3
- name: Install Rust components
run: |
rustup component add rustfmt
rustup component add clippy
- name: Print Rust information
run: rustc --version
- name: Verify Rust code format
run: cd frontends/sdl && cargo fmt --all -- --check
- name: Verify Rust code linting
run: cd frontends/sdl && cargo clippy -- -D warnings -A unknown-lints
- name: Install SDL dependencies
run: cd frontends/sdl && cargo install cargo-vcpkg && cargo vcpkg build
- name: Build development version
run: cd frontends/sdl && cargo build
- name: Build release version
run: cd frontends/sdl && cargo build --release
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment