Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

feat: add platform and arch bin releasing #1782

feat: add platform and arch bin releasing

feat: add platform and arch bin releasing #1782

Workflow file for this run

name: Rust CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
shared-key: "ubuntu-22.04-shared-cache"
- name: Run Rust check + clippy
run: make rust-check
build_ui:
name: Build UI
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: npm install
run: npm install --prefix ./washboard
- name: npm run build
run: npm run build --prefix ./washboard
unit_tests:
name: Unit Tests
strategy:
fail-fast: false # Ensure we can run the full suite even if one OS fails
matrix:
os: [ubuntu-22.04, windows-latest-8-cores, macos-11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
shared-key: "${{ matrix.os }}-shared-cache"
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Build wash
run: make build
- name: Run all wash & wash-lib unit tests
run: make test-wash-ci
integration_tests:
name: Integration Tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
shared-key: "ubuntu-22.04-shared-cache"
- uses: acifani/setup-tinygo@v1
with:
tinygo-version: '0.27.0'
install-binaryen: 'false'
- name: Add wasm32-unknown-unknown
run: rustup target add wasm32-unknown-unknown
- name: Launch integration test services
uses: sudo-bot/action-docker-compose@latest
with:
cli-args: "-f ./tools/docker-compose.yml up --detach"
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Run integration tests
run: make test-integration-ci