123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- name: Rust CI
- on:
- push:
- branches:
- - master
- paths:
- - packages/**
- - examples/**
- - docs/guide/**
- - src/**
- - .github/**
- - lib.rs
- - Cargo.toml
- - Makefile.toml
- - playwright-tests/**
- pull_request:
- types: [opened, synchronize, reopened, ready_for_review]
- branches:
- - master
- paths:
- - packages/**
- - examples/**
- - src/**
- - .github/**
- - lib.rs
- - Cargo.toml
- concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
- jobs:
- check:
- if: github.event.pull_request.draft == false
- name: Check
- runs-on: ubuntu-latest
- steps:
- - uses: dtolnay/rust-toolchain@stable
- - uses: Swatinem/rust-cache@v2
- - run: sudo apt-get update
- - run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
- - uses: actions/checkout@v4
- - run: cargo check --all --examples --tests
- test:
- if: github.event.pull_request.draft == false
- name: Test Suite
- runs-on: ubuntu-latest
- steps:
- - uses: dtolnay/rust-toolchain@stable
- - uses: Swatinem/rust-cache@v2
- - run: sudo apt-get update
- - run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
- - uses: davidB/rust-cargo-make@v1
- - uses: browser-actions/setup-firefox@latest
- - uses: jetli/wasm-pack-action@v0.4.0
- - uses: actions/checkout@v4
- - run: cargo make tests
- fmt:
- if: github.event.pull_request.draft == false
- name: Rustfmt
- runs-on: ubuntu-latest
- steps:
- - uses: dtolnay/rust-toolchain@stable
- - uses: Swatinem/rust-cache@v2
- - run: rustup component add rustfmt
- - uses: actions/checkout@v4
- - run: cargo fmt --all -- --check
- clippy:
- if: github.event.pull_request.draft == false
- name: Clippy
- runs-on: ubuntu-latest
- steps:
- - uses: dtolnay/rust-toolchain@stable
- - uses: Swatinem/rust-cache@v2
- - run: sudo apt-get update
- - run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
- - run: rustup component add clippy
- - uses: actions/checkout@v4
- - run: cargo clippy --workspace --examples --tests -- -D warnings
- matrix_test:
- runs-on: ${{ matrix.platform.os }}
- 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:
- - name: install stable
- uses: dtolnay/rust-toolchain@master
- with:
- toolchain: ${{ matrix.platform.toolchain }}
- targets: ${{ matrix.platform.target }}
- - name: Install cross
- if: ${{ matrix.platform.cross == true }}
- uses: taiki-e/install-action@cross
- - uses: Swatinem/rust-cache@v2
- with:
- workspaces: core -> ../target
- save-if: ${{ matrix.features.key == 'all' }}
- - name: Install rustfmt
- run: rustup component add rustfmt
- - uses: actions/checkout@v4
- - name: test
- run: |
- ${{ env.RUST_CARGO_COMMAND }} ${{ matrix.platform.command }} ${{ matrix.platform.args }} --target ${{ matrix.platform.target }}
- # 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
- # - 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 &&\
- # 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
|