fixup #3
Workflow file for this run
This file contains hidden or 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: builds | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
almalinux-cross-compile: | |
name: Cross Compile Test | |
runs-on: ubuntu-latest | |
container: almalinux:9 | |
steps: | |
- run: | | |
dnf -y install dnf-plugins-core epel-release | |
dnf config-manager --set-enable crb | |
dnf -y install \ | |
cargo \ | |
gcc-aarch64-linux-gnu \ | |
rustc | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- run: cargo build | |
windows-msys2-mingw64: | |
name: Windows MSYS2 MINGW64 | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: git mingw-w64-x86_64-toolchain make mingw-w64-x86_64-rust | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- run: cargo build |