Skip to content

Commit

Permalink
Attempt to simplify CI using Nix nannou-dev shell
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchmindtree committed Jan 21, 2024
1 parent 1c7cbc3 commit 82bc51f
Showing 1 changed file with 86 additions and 196 deletions.
282 changes: 86 additions & 196 deletions .github/workflows/nannou.yml
Original file line number Diff line number Diff line change
@@ -1,262 +1,152 @@
name: nannou
on: [push, pull_request]
jobs:
rustfmt-check:
nix-fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- run: nix fmt -- --check ./

cargo-audit:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

cargo-fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- run: nix develop --command cargo fmt --verbose --workspace -- --check

cargo-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo check --locked --workspace
- run: nix develop --command cargo check --examples --workspace

cargo-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install alsa dev tools
run: sudo apt-get install libasound2-dev
- name: Install libxcb dev tools
run: sudo apt-get install libxcb-composite0-dev
- name: Install libuv dev tools
run: sudo apt-get install libudev-dev
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Run default features
uses: actions-rs/cargo@v1
with:
command: test
args: --lib --bins --verbose
- name: Test docs
uses: actions-rs/cargo@v1
with:
command: test
args: --doc --verbose
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo test --locked --workspace

cargo-test-all-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install alsa dev tools
run: sudo apt-get install libasound2-dev
- name: Install libxcb dev tools
run: sudo apt-get install libxcb-composite0-dev
- name: Install libuv dev tools
run: sudo apt-get install libudev-dev
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Run all features
uses: actions-rs/cargo@v1
with:
command: test
args: --lib --bins --all-features --verbose
- name: Test docs all features
uses: actions-rs/cargo@v1
with:
command: test
args: --doc --all-features --verbose
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo test --locked --all-features --workspace

cargo-doc-all-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo doc --locked --all-features --workspace

cargo-test-nannou-core-no-std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo test --locked -p nannou_core --no-default-features --features "libm serde"

cargo-test-core-no-std:
cargo-build-nannou-wasm32:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install libxcb dev tools
run: sudo apt-get install libxcb-composite0-dev
- name: Install libuv dev tools
run: sudo apt-get install libudev-dev
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Text no_std
uses: actions-rs/cargo@v1
with:
command: test
args: -p nannou_core --no-default-features --features "libm" --verbose
- name: Test no_std serde
uses: actions-rs/cargo@v1
with:
command: test
args: -p nannou_core --no-default-features --features "libm serde" --verbose
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo build --locked -p nannou --features "wasm-experimental" --target wasm32-unknown-unknown

cargo-check-examples:
verifications:
needs:
[
cargo-build-nannou-wasm32,
cargo-check,
cargo-doc-all-features,
cargo-fmt-check,
cargo-test,
cargo-test-all-features,
cargo-test-nannou-core-no-std,
nix-fmt-check,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install alsa dev tools
run: sudo apt-get install libasound2-dev
- name: Install libxcb dev tools
run: sudo apt-get install libxcb-composite0-dev
- name: Install libuv dev tools
run: sudo apt-get install libudev-dev
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v1
- name: Run check
uses: actions-rs/cargo@v1
with:
command: check
args: --examples --verbose
- name: Check nannou package builds against wasm32-unknown-unknown
uses: actions-rs/cargo@v1
with:
command: build
args: -p nannou --features wasm-experimental --target wasm32-unknown-unknown
- run: echo "Verifications complete"

cargo-publish:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [ verifications ]
env:
CRATESIO_TOKEN: ${{ secrets.CRATESIO_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install alsa dev tools
run: sudo apt-get install libasound2-dev
- name: Install libxcb dev tools
run: sudo apt-get install libxcb-composite0-dev
- name: Install libuv dev tools
run: sudo apt-get install libudev-dev
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- name: Cargo publish nannou_core
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_core/Cargo.toml
- name: Cargo publish nannou_wgpu
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_wgpu/Cargo.toml
- name: Wait for crates.io
run: sleep 30
- name: Cargo publish nannou_mesh
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_mesh/Cargo.toml
- name: Wait for crates.io
run: sleep 30
- name: Cargo publish nannou
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou/Cargo.toml
- name: Cargo publish nannou_audio
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_audio/Cargo.toml
# TODO: Add this once `nannou_isf` is ready.
# - name: Cargo publish nannou_isf
# continue-on-error: true
# run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_isf/Cargo.toml
- name: Cargo publish nannou_laser
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_laser/Cargo.toml
- name: Cargo publish nannou_osc
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_osc/Cargo.toml
- name: Wait for crates.io
run: sleep 15
- name: Cargo publish nannou_egui
continue-on-error: true
run: cargo publish --token $CRATESIO_TOKEN --manifest-path nannou_egui/Cargo.toml

guide-build-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Install mdbook
uses: actions-rs/cargo@v1
with:
command: install
args: mdbook
- name: Build book
run: mdbook build guide/
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- run: nix develop --command mdbook build guide/

guide-test-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install alsa dev tools
run: sudo apt-get install libasound2-dev
- name: Install libxcb dev tools
run: sudo apt-get install libxcb-composite0-dev
- name: Install libuv dev tools
run: sudo apt-get install libudev-dev
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Run guide tests
uses: actions-rs/cargo@v1
with:
command: test
args: -p book_tests --verbose
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command cargo test --locked -p book_tests

guide-push-to-deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install mdbook
uses: actions-rs/cargo@v1
with:
command: install
args: mdbook
- name: Build book
run: mdbook build guide/
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop --command mdbook build guide/
- name: Commit book to deploy branch
run: |
git config user.email "[email protected]"
Expand Down

0 comments on commit 82bc51f

Please sign in to comment.