dioxus/.github/workflows/main.yml

257 lines
7.7 KiB
YAML
Raw Normal View History

2021-12-29 04:17:36 +00:00
name: Rust CI
2022-02-10 17:05:19 +00:00
on:
2022-02-23 16:26:31 +00:00
push:
branches:
- master
paths:
- packages/**
- examples/**
- docs/guide/**
2022-02-23 16:26:31 +00:00
- src/**
- .github/**
- lib.rs
- Cargo.toml
- Makefile.toml
- playwright-tests/**
2022-02-23 16:26:31 +00:00
2022-02-17 16:19:28 +00:00
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- master
2022-02-10 17:05:19 +00:00
paths:
2022-02-10 17:08:38 +00:00
- packages/**
- examples/**
- src/**
2022-02-10 17:08:52 +00:00
- .github/**
2022-02-10 17:05:19 +00:00
- lib.rs
- Cargo.toml
2023-07-19 19:50:28 +00:00
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
2021-12-29 04:17:36 +00:00
jobs:
check:
2022-02-13 17:41:38 +00:00
if: github.event.pull_request.draft == false
2021-12-29 04:17:36 +00:00
name: Check
runs-on: ubuntu-latest
steps:
2024-01-08 22:37:05 +00:00
- run: sudo apt-get update
2024-01-08 23:19:21 +00:00
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
- uses: dtolnay/rust-toolchain@stable
- uses: mozilla-actions/sccache-action@v0.0.3
2023-12-08 14:47:47 +00:00
- uses: ilammy/setup-nasm@v1
- uses: actions/checkout@v4
- run: cargo check --all --examples --tests
2021-12-29 04:17:36 +00:00
test:
2022-02-13 17:43:15 +00:00
if: github.event.pull_request.draft == false
2021-12-29 04:17:36 +00:00
name: Test Suite
runs-on: ubuntu-latest
steps:
2024-01-08 22:37:05 +00:00
- run: sudo apt-get update
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
- uses: dtolnay/rust-toolchain@stable
- uses: mozilla-actions/sccache-action@v0.0.3
2023-12-08 14:47:47 +00:00
- uses: ilammy/setup-nasm@v1
- uses: davidB/rust-cargo-make@v1
2022-02-02 23:16:56 +00:00
- uses: browser-actions/setup-firefox@latest
- uses: jetli/wasm-pack-action@v0.4.0
- uses: actions/checkout@v4
- run: cargo make tests
2021-12-29 04:17:36 +00:00
fmt:
2022-02-13 17:43:15 +00:00
if: github.event.pull_request.draft == false
2021-12-29 04:17:36 +00:00
name: Rustfmt
runs-on: ubuntu-latest
steps:
2024-01-08 23:19:21 +00:00
- uses: ilammy/setup-nasm@v1
- uses: dtolnay/rust-toolchain@stable
2024-01-08 23:19:21 +00:00
with:
components: rustfmt
- uses: mozilla-actions/sccache-action@v0.0.3
- uses: actions/checkout@v4
- run: cargo fmt --all -- --check
2021-12-29 04:17:36 +00:00
2022-01-08 14:32:53 +00:00
clippy:
2022-02-13 17:43:15 +00:00
if: github.event.pull_request.draft == false
2022-01-08 14:32:53 +00:00
name: Clippy
runs-on: ubuntu-latest
steps:
2024-01-08 22:37:05 +00:00
- run: sudo apt-get update
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
2024-01-08 23:19:21 +00:00
- uses: ilammy/setup-nasm@v1
- uses: dtolnay/rust-toolchain@stable
2024-01-08 23:19:21 +00:00
with:
components: rustfmt, clippy
- uses: mozilla-actions/sccache-action@v0.0.3
- uses: actions/checkout@v4
- run: cargo clippy --workspace --examples --tests -- -D warnings
2022-02-06 17:14:19 +00:00
miri:
2024-01-08 22:21:09 +00:00
if: github.event.pull_request.draft == false
name: Miri
runs-on: ubuntu-latest
env:
CARGO_UNSTABLE_SPARSE_REGISTRY: 'true'
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
MIRIFLAGS: -Zmiri-tag-gc=1
# Change to specific Rust release to pin
rust_stable: stable
rust_nightly: nightly-2023-11-16
rust_clippy: 1.70.0
steps:
- uses: actions/checkout@v4
- uses: ilammy/setup-nasm@v1
- name: Install Rust ${{ env.rust_nightly }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.rust_nightly }}
components: miri
2024-01-08 22:16:11 +00:00
- uses: mozilla-actions/sccache-action@v0.0.3
- name: miri
# Many of tests in tokio/tests and doctests use #[tokio::test] or
# #[tokio::main] that calls epoll_create1 that Miri does not support.
# run: cargo miri test --features full --lib --no-fail-fast
run: |
cargo miri test --package dioxus-core -- --exact --nocapture
cargo miri test --package dioxus-native-core --test miri_native -- --exact --nocapture
env:
MIRIFLAGS: -Zmiri-disable-isolation -Zmiri-strict-provenance -Zmiri-retag-fields
PROPTEST_CASES: 10
2024-01-08 22:21:09 +00:00
playwright:
if: github.event.pull_request.draft == false
name: Playwright Tests
runs-on: ubuntu-latest
steps:
# Do our best to cache the toolchain and node install steps
- uses: ilammy/setup-nasm@v1
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: x86_64-unknown-linux-gnu,wasm32-unknown-unknown
2024-01-08 22:21:53 +00:00
- uses: mozilla-actions/sccache-action@v0.0.3
- run: cd playwright-tests
2024-01-08 22:21:09 +00:00
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npm install -D @playwright/test
- name: Install Playwright Browsers
run: npx playwright install --with-deps
# Cache the CLI by using cargo run internally
# - name: Install Dioxus CLI
# uses: actions-rs/cargo@v1
# with:
# command: install
# args: --path packages/cli
2024-01-08 23:19:21 +00:00
- uses: actions/checkout@v4
2024-01-08 22:21:09 +00:00
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
2023-07-19 20:22:33 +00:00
matrix_test:
runs-on: ${{ matrix.platform.os }}
2024-01-08 23:29:20 +00:00
if: github.event.pull_request.draft == false
env:
RUST_CARGO_COMMAND: ${{ matrix.platform.cross == true && 'cross' || 'cargo' }}
strategy:
matrix:
platform:
- {
target: x86_64-pc-windows-msvc,
os: windows-latest,
toolchain: "1.70.0",
cross: false,
command: "test",
args: "--all --tests",
}
- {
target: x86_64-apple-darwin,
os: macos-latest,
toolchain: "1.70.0",
cross: false,
command: "test",
args: "--all --tests",
}
- {
target: aarch64-apple-ios,
os: macos-latest,
toolchain: "1.70.0",
cross: false,
command: "build",
args: "--package dioxus-mobile",
}
- {
target: aarch64-linux-android,
os: ubuntu-latest,
toolchain: "1.70.0",
cross: true,
command: "build",
args: "--package dioxus-mobile",
}
steps:
2023-12-08 14:47:47 +00:00
- uses: ilammy/setup-nasm@v1
- name: install stable
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.platform.toolchain }}
targets: ${{ matrix.platform.target }}
2024-01-08 23:19:21 +00:00
components: rustfmt
- name: Install cross
if: ${{ matrix.platform.cross == true }}
uses: taiki-e/install-action@cross
- uses: mozilla-actions/sccache-action@v0.0.3
with:
workspaces: core -> ../target
save-if: ${{ matrix.features.key == 'all' }}
- uses: actions/checkout@v4
- name: test
run: |
${{ env.RUST_CARGO_COMMAND }} ${{ matrix.platform.command }} ${{ matrix.platform.args }} --target ${{ matrix.platform.target }}
2022-02-17 16:30:25 +00:00
# Coverage is disabled until we can fix it
# coverage:
# name: Coverage
# runs-on: ubuntu-latest
# container:
# image: xd009642/tarpaulin:develop-nightly
# options: --security-opt seccomp=unconfined
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
2022-02-17 16:30:25 +00:00
# - name: Generate code coverage
# run: |
# apt-get update &&\
# apt-get install build-essential &&\
# apt install libwebkit2gtk-4.0-dev libgtk-3-dev libayatana-appindicator3-dev -y &&\
2022-02-17 16:30:25 +00:00
# cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml
# - name: Upload to codecov.io
# uses: codecov/codecov-action@v2
# with:
# fail_ci_if_error: false