2021-12-28 23:17:36 -05:00
|
|
|
name: Rust CI
|
|
|
|
|
2022-02-10 12:05:19 -05:00
|
|
|
on:
|
2022-02-23 11:26:31 -05:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- packages/**
|
|
|
|
- examples/**
|
2022-08-10 15:23:27 +03:00
|
|
|
- docs/guide/**
|
2022-02-23 11:26:31 -05:00
|
|
|
- src/**
|
|
|
|
- .github/**
|
|
|
|
- lib.rs
|
|
|
|
- Cargo.toml
|
2022-07-07 16:59:00 +03:00
|
|
|
- Makefile.toml
|
2022-02-23 11:26:31 -05:00
|
|
|
|
2022-02-17 11:19:28 -05:00
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
branches:
|
|
|
|
- master
|
2022-02-10 12:05:19 -05:00
|
|
|
paths:
|
2022-02-10 12:08:38 -05:00
|
|
|
- packages/**
|
|
|
|
- examples/**
|
|
|
|
- src/**
|
2022-02-10 12:08:52 -05:00
|
|
|
- .github/**
|
2022-02-10 12:05:19 -05:00
|
|
|
- lib.rs
|
|
|
|
- Cargo.toml
|
|
|
|
|
2024-01-08 17:42:17 -08:00
|
|
|
# workflow_dispatch:
|
2023-07-19 12:50:28 -07:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2024-01-08 15:00:05 -08:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2024-01-08 16:14:06 -08:00
|
|
|
CARGO_INCREMENTAL: "0"
|
2024-01-08 15:00:05 -08:00
|
|
|
|
2021-12-28 23:17:36 -05:00
|
|
|
jobs:
|
|
|
|
check:
|
2022-02-13 12:41:38 -05:00
|
|
|
if: github.event.pull_request.draft == false
|
2021-12-28 23:17:36 -05:00
|
|
|
name: Check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-08 15:57:26 -08:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 14:37:05 -08:00
|
|
|
- run: sudo apt-get update
|
2024-01-08 15:19:21 -08:00
|
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
|
2023-06-19 19:43:33 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-08 16:32:49 -08:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-01-08 16:53:37 -08:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2023-12-08 08:47:47 -06:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2023-06-19 19:43:33 +02:00
|
|
|
- run: cargo check --all --examples --tests
|
2021-12-28 23:17:36 -05:00
|
|
|
|
|
|
|
test:
|
2022-02-13 12:43:15 -05:00
|
|
|
if: github.event.pull_request.draft == false
|
2021-12-28 23:17:36 -05:00
|
|
|
name: Test Suite
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-08 15:57:26 -08:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 14:37:05 -08:00
|
|
|
- run: sudo apt-get update
|
|
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
|
2023-06-19 19:43:33 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-08 16:32:49 -08:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-01-08 16:53:37 -08:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2023-12-08 08:47:47 -06:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2022-02-04 17:52:47 +01:00
|
|
|
- uses: davidB/rust-cargo-make@v1
|
2022-02-03 00:16:56 +01:00
|
|
|
- uses: browser-actions/setup-firefox@latest
|
2022-12-07 03:25:04 +00:00
|
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
2024-02-05 12:57:48 -08:00
|
|
|
- run: bash ./github/free_space.sh
|
2023-06-19 19:43:33 +02:00
|
|
|
- run: cargo make tests
|
2021-12-28 23:17:36 -05:00
|
|
|
|
|
|
|
fmt:
|
2022-02-13 12:43:15 -05:00
|
|
|
if: github.event.pull_request.draft == false
|
2021-12-28 23:17:36 -05:00
|
|
|
name: Rustfmt
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-08 15:57:26 -08:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 15:19:21 -08:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2023-06-19 19:43:33 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-08 15:19:21 -08:00
|
|
|
with:
|
|
|
|
components: rustfmt
|
2024-01-08 16:32:49 -08:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-01-08 16:53:37 -08:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2023-06-19 19:43:33 +02:00
|
|
|
- run: cargo fmt --all -- --check
|
2021-12-28 23:17:36 -05:00
|
|
|
|
2022-01-08 15:32:53 +01:00
|
|
|
clippy:
|
2022-02-13 12:43:15 -05:00
|
|
|
if: github.event.pull_request.draft == false
|
2022-01-08 15:32:53 +01:00
|
|
|
name: Clippy
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-08 15:57:26 -08:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 14:37:05 -08:00
|
|
|
- run: sudo apt-get update
|
|
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
2024-01-08 15:19:21 -08:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2023-06-19 19:43:33 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-08 15:19:21 -08:00
|
|
|
with:
|
|
|
|
components: rustfmt, clippy
|
2024-01-08 16:32:49 -08:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-01-08 16:53:37 -08:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2023-06-19 19:43:33 +02:00
|
|
|
- run: cargo clippy --workspace --examples --tests -- -D warnings
|
2022-02-06 18:14:19 +01:00
|
|
|
|
2024-02-05 11:38:17 -08:00
|
|
|
# We removed most unsafe that we can, and using nightly doubles our cache size
|
|
|
|
# miri:
|
|
|
|
# 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
|
2024-01-08 14:14:41 -08:00
|
|
|
|
2024-02-05 11:38:17 -08:00
|
|
|
# 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
|
|
|
|
# - uses: Swatinem/rust-cache@v2
|
|
|
|
# with:
|
|
|
|
# cache-all-crates: "true"
|
|
|
|
# save-if: ${{ github.ref == 'refs/heads/master' }}
|
|
|
|
# - 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 14:14:41 -08:00
|
|
|
|
2024-01-08 14:21:09 -08: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
|
2024-01-08 15:57:26 -08:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 14:21:09 -08:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 16
|
2024-02-05 12:57:48 -08:00
|
|
|
- run: bash ./github/free_space.sh
|
2024-01-08 14:21:09 -08:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@master
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
targets: x86_64-unknown-linux-gnu,wasm32-unknown-unknown
|
2024-01-08 16:32:49 -08:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-01-08 16:53:37 -08:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2024-01-08 15:51:26 -08:00
|
|
|
|
2024-01-08 14:21:09 -08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
2024-01-30 18:51:19 -08:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 15:51:26 -08:00
|
|
|
|
2024-01-08 14:21:09 -08:00
|
|
|
- name: Install Playwright
|
|
|
|
run: npm install -D @playwright/test
|
2024-01-30 18:51:19 -08:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 15:51:26 -08:00
|
|
|
|
2024-01-08 14:21:09 -08:00
|
|
|
- name: Install Playwright Browsers
|
|
|
|
run: npx playwright install --with-deps
|
2024-01-30 18:51:19 -08:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 15:51:26 -08:00
|
|
|
|
2024-01-08 14:21:09 -08:00
|
|
|
- name: Run Playwright tests
|
|
|
|
run: npx playwright test
|
2024-01-30 18:51:19 -08:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 15:51:26 -08:00
|
|
|
|
2024-01-08 14:21:09 -08:00
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: playwright-report
|
|
|
|
path: playwright-report/
|
|
|
|
retention-days: 30
|
|
|
|
|
|
|
|
|
2023-07-19 13:22:33 -07:00
|
|
|
matrix_test:
|
2023-07-19 13:18:45 -07:00
|
|
|
runs-on: ${{ matrix.platform.os }}
|
2024-01-08 15:29:20 -08:00
|
|
|
if: github.event.pull_request.draft == false
|
2023-08-22 20:48:03 -04:00
|
|
|
env:
|
|
|
|
RUST_CARGO_COMMAND: ${{ matrix.platform.cross == true && 'cross' || 'cargo' }}
|
2023-07-19 13:18:45 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- {
|
|
|
|
target: x86_64-pc-windows-msvc,
|
|
|
|
os: windows-latest,
|
2023-08-22 20:48:03 -04:00
|
|
|
toolchain: "1.70.0",
|
2023-07-19 13:18:45 -07:00
|
|
|
cross: false,
|
2023-08-22 20:48:03 -04:00
|
|
|
command: "test",
|
|
|
|
args: "--all --tests",
|
2023-07-19 13:18:45 -07:00
|
|
|
}
|
|
|
|
- {
|
|
|
|
target: x86_64-apple-darwin,
|
|
|
|
os: macos-latest,
|
2023-08-22 20:48:03 -04:00
|
|
|
toolchain: "1.70.0",
|
2023-07-19 13:18:45 -07:00
|
|
|
cross: false,
|
2023-08-22 20:48:03 -04:00
|
|
|
command: "test",
|
|
|
|
args: "--all --tests",
|
2023-07-19 13:18:45 -07:00
|
|
|
}
|
|
|
|
- {
|
|
|
|
target: aarch64-apple-ios,
|
|
|
|
os: macos-latest,
|
2023-08-22 20:48:03 -04:00
|
|
|
toolchain: "1.70.0",
|
2023-07-19 13:18:45 -07:00
|
|
|
cross: false,
|
2023-08-22 20:48:03 -04:00
|
|
|
command: "build",
|
|
|
|
args: "--package dioxus-mobile",
|
2023-07-19 13:18:45 -07:00
|
|
|
}
|
|
|
|
- {
|
|
|
|
target: aarch64-linux-android,
|
|
|
|
os: ubuntu-latest,
|
2023-08-22 20:48:03 -04:00
|
|
|
toolchain: "1.70.0",
|
2023-07-19 13:18:45 -07:00
|
|
|
cross: true,
|
2023-08-22 20:48:03 -04:00
|
|
|
command: "build",
|
|
|
|
args: "--package dioxus-mobile",
|
2023-07-19 13:18:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
steps:
|
2024-01-08 15:57:26 -08:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-08 08:47:47 -06:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2023-07-19 13:18:45 -07:00
|
|
|
- name: install stable
|
2023-08-22 20:48:03 -04:00
|
|
|
uses: dtolnay/rust-toolchain@master
|
2023-07-19 13:18:45 -07:00
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.platform.toolchain }}
|
2023-08-22 20:48:03 -04:00
|
|
|
targets: ${{ matrix.platform.target }}
|
2024-01-08 15:19:21 -08:00
|
|
|
components: rustfmt
|
2023-08-22 20:48:03 -04:00
|
|
|
|
|
|
|
- name: Install cross
|
|
|
|
if: ${{ matrix.platform.cross == true }}
|
2024-01-08 16:32:49 -08:00
|
|
|
|
2023-08-22 20:48:03 -04:00
|
|
|
uses: taiki-e/install-action@cross
|
2024-02-05 12:57:48 -08:00
|
|
|
- run: bash ./github/free_space.sh
|
2024-01-08 16:26:12 -08:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-07-19 13:18:45 -07:00
|
|
|
with:
|
2024-01-08 16:26:12 -08:00
|
|
|
key: "${{ matrix.platform.target }}"
|
|
|
|
cache-all-crates: "true"
|
2024-01-08 16:53:37 -08:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2024-01-08 16:26:12 -08:00
|
|
|
|
2023-07-19 13:18:45 -07:00
|
|
|
- name: test
|
2023-08-22 20:48:03 -04:00
|
|
|
run: |
|
|
|
|
${{ env.RUST_CARGO_COMMAND }} ${{ matrix.platform.command }} ${{ matrix.platform.args }} --target ${{ matrix.platform.target }}
|
2023-07-19 13:18:45 -07:00
|
|
|
|
2022-02-17 11:30:25 -05: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
|
2023-09-11 08:32:40 -05:00
|
|
|
# uses: actions/checkout@v4
|
2022-02-17 11:30:25 -05:00
|
|
|
# - name: Generate code coverage
|
|
|
|
# run: |
|
|
|
|
# apt-get update &&\
|
|
|
|
# apt-get install build-essential &&\
|
2022-05-07 13:54:59 +03:00
|
|
|
# apt install libwebkit2gtk-4.0-dev libgtk-3-dev libayatana-appindicator3-dev -y &&\
|
2022-02-17 11:30:25 -05: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
|