Update Rust crate windows to 0.59 #2205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: | |
release: | |
types: [published] | |
pull_request: | |
branches: | |
- "trunk" | |
push: | |
branches: | |
- "trunk" | |
permissions: | |
contents: write | |
env: | |
CARGO_TERM_COLOR: always | |
CONTRIBUTORS_TOKEN: ${{ secrets.CONTRIBUTORS_TOKEN }} | |
IS_CI: true | |
IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/') }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_PUBLISH_TOKEN }} | |
jobs: | |
cargo-deny: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/[email protected] | |
- uses: EmbarkStudios/[email protected] | |
clippy: | |
name: Clippy | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: Swatinem/[email protected] | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Run rust-clippy | |
run: cargo clippy --all-features | |
continue-on-error: true | |
format: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: Check Formatting | |
run: cargo fmt --all --check | |
test: | |
name: Test | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: Swatinem/[email protected] | |
- name: Install and setup Scoop | |
uses: MinoruSekine/[email protected] | |
with: | |
buckets: extras java | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Build and Test | |
run: cargo test --all --features beta | |
build: | |
strategy: | |
matrix: | |
arch: [x86_64, i686, aarch64] | |
name: Build for ${{ matrix.arch }} | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: Swatinem/[email protected] | |
with: | |
key: build-${{ matrix.arch }} | |
- uses: extractions/setup-just@v2 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Debug build | |
run: cargo b --all --features beta --target ${{ matrix.arch }}-pc-windows-msvc | |
publish: | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
name: Publish | |
runs-on: windows-latest | |
needs: [cargo-deny, build, test, clippy, format] | |
steps: | |
- uses: actions/[email protected] | |
- uses: extractions/setup-just@v2 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
# - name: Verify crate | |
# run: cargo publish --dry-run | |
# - name: Check version matches tag | |
# run: | | |
# $version = (cargo metadata --format-version 1 | ConvertFrom-Json).packages[0].version | |
# $tag = "${{ github.ref_name }}" | |
# if ($tag -ne "v$version") { | |
# throw "Version mismatch: tag=$tag, Cargo.toml=$version" | |
# } | |
- name: Publish to crates.io | |
if: ${{ !github.event.release.prerelease }} | |
run: cargo publish | |
- name: Build and Package | |
if: ${{ !github.event.release.prerelease }} | |
run: just release-all | |
- name: Beta Build and Package | |
if: ${{ github.event.release.prerelease }} | |
run: just beta-release-all | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: package.zip | |
path: release/* | |
- name: Upload & Publish | |
uses: softprops/[email protected] | |
with: | |
files: | | |
release/*.exe | |
release/*.exe.sha256 | |
- name: VirusTotal Scan | |
uses: crazy-max/ghaction-virustotal@v4 | |
with: | |
update_release_body: true | |
vt_api_key: ${{ secrets.VT_API_KEY }} | |
files: | | |
.exe$ |