Skip to content

Use prebuilt gnullvm target (#3007) #1131

Use prebuilt gnullvm target (#3007)

Use prebuilt gnullvm target (#3007) #1131

Workflow file for this run

name: raw_dylib
on:
pull_request:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
branches:
- master
env:
RUSTFLAGS: -Dwarnings --cfg windows_raw_dylib
jobs:
check:
runs-on: windows-2019
strategy:
matrix:
include:
- target: x86_64-pc-windows-msvc
- target: i686-pc-windows-msvc
- target: x86_64-pc-windows-gnu
- target: i686-pc-windows-gnu
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update toolchain
run: rustup update --no-self-update nightly && rustup default nightly-${{ matrix.target }}
- name: Add toolchain target
run: rustup target add ${{ matrix.target }}
- name: Fix environment
uses: ./.github/actions/fix-environment
- name: Test
run: >
cargo test -p test_calling_convention &&
cargo test -p test_lib &&
cargo test -p test_standalone &&
cargo test -p test_targets &&
cargo test -p test_win32 &&
cargo test -p test_winrt