Cargo command to work with Nintendo 3DS project binaries.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.5 KiB

1 year ago
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
env:
# https://blog.rust-lang.org/2022/06/22/sparse-registry-testing.html
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
# actions-rust-lang/setup-rust-toolchain sets some default RUSTFLAGS
RUSTFLAGS: ""
jobs:
lint:
strategy:
matrix:
toolchain:
1 year ago
- stable
1 year ago
runs-on: ubuntu-latest
container: devkitpro/devkitarm
steps:
- name: Checkout branch
uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
toolchain: ${{ matrix.toolchain }}
- name: Check formatting
run: cargo fmt --all --verbose -- --check
- name: Cargo check
1 year ago
run: cargo clippy --color=always --verbose --all-targets
1 year ago
project-build:
strategy:
matrix:
toolchain:
# Oldest supported nightly
- nightly-2023-06-01
1 year ago
- nightly
1 year ago
1 year ago
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
runs-on: ubuntu-latest
container: devkitpro/devkitarm
steps:
- name: Checkout branch
1 year ago
uses: actions/checkout@v3
1 year ago
- uses: ./.github/actions/setup
with:
toolchain: ${{ matrix.toolchain }}
1 year ago
- name: Install cargo-3ds
uses: actions-rs/cargo@v1
with:
command: install
args: --locked --path .
1 year ago
- name: Create new project
run: cargo 3ds new app --bin
1 year ago
- name: Build project
working-directory: ./app
run: cargo 3ds build --release