2024-02-22 05:08:46 +00:00
|
|
|
# Whenever an open PR is updated, the workflow will be triggered
|
|
|
|
#
|
|
|
|
# This can get expensive, so we do a lot of caching and checks to prevent unnecessary runs
|
|
|
|
|
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:
|
2024-02-22 00:15:19 +00:00
|
|
|
- main
|
2022-02-23 16:26:31 +00:00
|
|
|
paths:
|
|
|
|
- packages/**
|
|
|
|
- examples/**
|
2022-08-10 12:23:27 +00:00
|
|
|
- docs/guide/**
|
2022-02-23 16:26:31 +00:00
|
|
|
- src/**
|
|
|
|
- .github/**
|
|
|
|
- lib.rs
|
|
|
|
- Cargo.toml
|
2022-07-07 13:59:00 +00:00
|
|
|
- Makefile.toml
|
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:
|
2024-02-22 00:15:19 +00:00
|
|
|
- main
|
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
|
|
|
|
|
2024-01-09 01:42:17 +00:00
|
|
|
# workflow_dispatch:
|
2023-07-19 19:50:28 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2024-01-08 23:00:05 +00:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2024-01-09 00:14:06 +00:00
|
|
|
CARGO_INCREMENTAL: "0"
|
2024-01-08 23:00:05 +00:00
|
|
|
|
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 23:57:26 +00:00
|
|
|
- uses: actions/checkout@v4
|
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
|
2023-06-19 17:43:33 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-09 00:32:49 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-02-22 00:15:19 +00:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
2023-12-08 14:47:47 +00:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2024-02-16 03:00:07 +00:00
|
|
|
- run: cargo check --all --examples --tests --all-features --all-targets
|
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 23:57:26 +00:00
|
|
|
- uses: actions/checkout@v4
|
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
|
2023-06-19 17:43:33 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-09 00:32:49 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-02-22 00:15:19 +00:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
2023-12-08 14:47:47 +00:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2022-02-04 16:52:47 +00:00
|
|
|
- uses: davidB/rust-cargo-make@v1
|
2022-02-02 23:16:56 +00: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 21:24:21 +00:00
|
|
|
- name: Free Disk Space (Ubuntu)
|
|
|
|
uses: jlumbroso/free-disk-space@v1.3.1
|
2024-02-05 21:26:32 +00:00
|
|
|
with: # speed things up a bit
|
|
|
|
large-packages: false
|
|
|
|
docker-images: false
|
|
|
|
swap-storage: false
|
2023-06-19 17:43:33 +00:00
|
|
|
- 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:57:26 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 23:19:21 +00:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2023-06-19 17:43:33 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-08 23:19:21 +00:00
|
|
|
with:
|
|
|
|
components: rustfmt
|
2024-01-09 00:32:49 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-02-22 00:15:19 +00:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
2023-06-19 17:43:33 +00:00
|
|
|
- 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 23:57:26 +00:00
|
|
|
- uses: actions/checkout@v4
|
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
|
2023-06-19 17:43:33 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2024-01-08 23:19:21 +00:00
|
|
|
with:
|
|
|
|
components: rustfmt, clippy
|
2024-01-09 00:32:49 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-02-22 00:15:19 +00:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
2024-02-16 03:00:07 +00:00
|
|
|
- run: cargo clippy --workspace --examples --tests --all-features --all-targets -- -D warnings
|
2022-02-06 17:14:19 +00:00
|
|
|
|
2024-02-22 03:36:33 +00:00
|
|
|
# Only run semver checks if the PR is not a draft and does not have the breaking label
|
|
|
|
# Breaking PRs don't need to follow semver since they are breaking changes
|
|
|
|
# However, this means we won't attempt to backport them, so you should be careful about using this label, as it will
|
|
|
|
# likely make future backporting difficult
|
2024-02-22 06:29:48 +00:00
|
|
|
#
|
|
|
|
# todo: fix this so even if breaking changes have been merged, the fix can be backported
|
|
|
|
#
|
|
|
|
# This will stop working once the first breaking change has been merged, so we should really try to just backport the fix
|
|
|
|
# and *then* run the semver checks. Basically "would backporting this PR cause a breaking change on stable?"
|
|
|
|
#
|
|
|
|
# semver:
|
|
|
|
# if: github.event.pull_request.draft == false && !contains(github.event.pull_request.labels.*.name, 'breaking')
|
|
|
|
# name: Semver Check
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/checkout@v4
|
|
|
|
# - uses: dtolnay/rust-toolchain@stable
|
|
|
|
# - uses: Swatinem/rust-cache@v2
|
|
|
|
# with:
|
|
|
|
# cache-all-crates: "true"
|
|
|
|
# save-if: ${{ github.ref == 'refs/heads/main' }}
|
|
|
|
# - name: Check semver
|
|
|
|
# uses: obi1kenobi/cargo-semver-checks-action@v2
|
|
|
|
# with:
|
|
|
|
# manifest-path: ./Cargo.toml
|
|
|
|
# exclude: "dioxus-cli, dioxus-ext"
|
2024-02-22 03:36:33 +00:00
|
|
|
|
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
|
2024-01-08 23:57:26 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-08 22:21:09 +00:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 16
|
2024-02-05 21:24:21 +00:00
|
|
|
- name: Free Disk Space (Ubuntu)
|
|
|
|
uses: jlumbroso/free-disk-space@v1.3.1
|
2024-02-05 21:26:32 +00:00
|
|
|
with: # speed things up a bit
|
|
|
|
large-packages: false
|
|
|
|
docker-images: false
|
|
|
|
swap-storage: false
|
2024-01-08 22:21:09 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@master
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
targets: x86_64-unknown-linux-gnu,wasm32-unknown-unknown
|
2024-01-09 00:32:49 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
|
|
|
cache-all-crates: "true"
|
2024-02-22 00:15:19 +00:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
2024-01-08 23:51:26 +00:00
|
|
|
|
2024-01-08 22:21:09 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
2024-01-31 02:51:19 +00:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 23:51:26 +00:00
|
|
|
|
2024-01-08 22:21:09 +00:00
|
|
|
- name: Install Playwright
|
|
|
|
run: npm install -D @playwright/test
|
2024-01-31 02:51:19 +00:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 23:51:26 +00:00
|
|
|
|
2024-01-08 22:21:09 +00:00
|
|
|
- name: Install Playwright Browsers
|
|
|
|
run: npx playwright install --with-deps
|
2024-01-31 02:51:19 +00:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 23:51:26 +00:00
|
|
|
|
2024-01-08 22:21:09 +00:00
|
|
|
- name: Run Playwright tests
|
|
|
|
run: npx playwright test
|
2024-01-31 02:51:19 +00:00
|
|
|
working-directory: ./packages/playwright-tests
|
2024-01-08 23:51:26 +00:00
|
|
|
|
2024-01-08 22:21:09 +00:00
|
|
|
- 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:
|
2023-07-19 20:18:45 +00:00
|
|
|
runs-on: ${{ matrix.platform.os }}
|
2024-01-08 23:29:20 +00:00
|
|
|
if: github.event.pull_request.draft == false
|
2023-08-23 00:48:03 +00:00
|
|
|
env:
|
|
|
|
RUST_CARGO_COMMAND: ${{ matrix.platform.cross == true && 'cross' || 'cargo' }}
|
2023-07-19 20:18:45 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- {
|
|
|
|
target: x86_64-pc-windows-msvc,
|
|
|
|
os: windows-latest,
|
2024-02-05 22:48:51 +00:00
|
|
|
toolchain: "1.75.0",
|
2023-07-19 20:18:45 +00:00
|
|
|
cross: false,
|
2023-08-23 00:48:03 +00:00
|
|
|
command: "test",
|
|
|
|
args: "--all --tests",
|
2023-07-19 20:18:45 +00:00
|
|
|
}
|
|
|
|
- {
|
|
|
|
target: x86_64-apple-darwin,
|
|
|
|
os: macos-latest,
|
2024-02-05 22:48:51 +00:00
|
|
|
toolchain: "1.75.0",
|
2023-07-19 20:18:45 +00:00
|
|
|
cross: false,
|
2023-08-23 00:48:03 +00:00
|
|
|
command: "test",
|
|
|
|
args: "--all --tests",
|
2023-07-19 20:18:45 +00:00
|
|
|
}
|
|
|
|
- {
|
|
|
|
target: aarch64-apple-ios,
|
|
|
|
os: macos-latest,
|
2024-02-05 22:48:51 +00:00
|
|
|
toolchain: "1.75.0",
|
2023-07-19 20:18:45 +00:00
|
|
|
cross: false,
|
2023-08-23 00:48:03 +00:00
|
|
|
command: "build",
|
|
|
|
args: "--package dioxus-mobile",
|
2023-07-19 20:18:45 +00:00
|
|
|
}
|
|
|
|
- {
|
|
|
|
target: aarch64-linux-android,
|
|
|
|
os: ubuntu-latest,
|
2024-02-05 22:48:51 +00:00
|
|
|
toolchain: "1.75.0",
|
2023-07-19 20:18:45 +00:00
|
|
|
cross: true,
|
2023-08-23 00:48:03 +00:00
|
|
|
command: "build",
|
|
|
|
args: "--package dioxus-mobile",
|
2023-07-19 20:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
steps:
|
2024-01-08 23:57:26 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-08 14:47:47 +00:00
|
|
|
- uses: ilammy/setup-nasm@v1
|
2023-07-19 20:18:45 +00:00
|
|
|
- name: install stable
|
2023-08-23 00:48:03 +00:00
|
|
|
uses: dtolnay/rust-toolchain@master
|
2023-07-19 20:18:45 +00:00
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.platform.toolchain }}
|
2023-08-23 00:48:03 +00:00
|
|
|
targets: ${{ matrix.platform.target }}
|
2024-01-08 23:19:21 +00:00
|
|
|
components: rustfmt
|
2023-08-23 00:48:03 +00:00
|
|
|
|
|
|
|
- name: Install cross
|
|
|
|
if: ${{ matrix.platform.cross == true }}
|
2024-01-09 00:32:49 +00:00
|
|
|
|
2023-08-23 00:48:03 +00:00
|
|
|
uses: taiki-e/install-action@cross
|
2024-02-05 21:24:21 +00:00
|
|
|
|
|
|
|
- name: Free Disk Space (Ubuntu)
|
|
|
|
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
|
|
|
|
uses: jlumbroso/free-disk-space@v1.3.1
|
2024-02-05 21:26:32 +00:00
|
|
|
with: # speed things up a bit
|
|
|
|
large-packages: false
|
|
|
|
docker-images: false
|
|
|
|
swap-storage: false
|
2024-02-05 21:24:21 +00:00
|
|
|
|
2024-01-09 00:26:12 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-07-19 20:18:45 +00:00
|
|
|
with:
|
2024-01-09 00:26:12 +00:00
|
|
|
key: "${{ matrix.platform.target }}"
|
|
|
|
cache-all-crates: "true"
|
2024-02-22 00:15:19 +00:00
|
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
2024-01-09 00:26:12 +00:00
|
|
|
|
2023-07-19 20:18:45 +00:00
|
|
|
- name: test
|
2023-08-23 00:48:03 +00:00
|
|
|
run: |
|
|
|
|
${{ env.RUST_CARGO_COMMAND }} ${{ matrix.platform.command }} ${{ matrix.platform.args }} --target ${{ matrix.platform.target }}
|