This repository was archived by the owner on Oct 1, 2025. It is now read-only.
init: initial commit #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build/Test oxidizr | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Build/Test oxidizr | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Rust | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential | |
| sudo snap install --classic rustup | |
| rustup default stable | |
| - name: Build oxidizr | |
| run: | | |
| cargo build | |
| - name: Run tests | |
| run: | | |
| cargo test -- --show-output | |
| snap: | |
| name: Build snap | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04 | |
| - os: ubuntu-24.04-arm | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup LXD | |
| uses: canonical/[email protected] | |
| - name: Setup Snapcraft | |
| run: sudo snap install --classic snapcraft | |
| - name: Build snap | |
| run: snapcraft --verbose |