Skip to content

add support for msys2 (#94) #507

add support for msys2 (#94)

add support for msys2 (#94) #507

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 500
- uses: dtolnay/rust-toolchain@stable
- run: cargo check
test:
name: Test Suite
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 500
- uses: dtolnay/rust-toolchain@stable
- name: Install LLVM
if: matrix.os == 'windows-2019'
run: choco install -y llvm
- name: Setup msbuild
if: matrix.os == 'windows-2019'
uses: microsoft/[email protected]
- run: cargo test
timeout-minutes: 20
if: matrix.os == 'windows-2019'
env:
LIBCLANG_PATH: "C:\\Program Files\\LLVM\\bin"
- run: cargo test
if: matrix.os != 'windows-2019'
- name: Test package mupdf-sys
if: matrix.os == 'ubuntu-latest'
run: cargo package --manifest-path mupdf-sys/Cargo.toml
test-msys:
name: Test Suite (MSYS2)
runs-on: windows-2019
strategy:
matrix:
include:
- { sys: ucrt64, env: ucrt-x86_64 }
- { sys: mingw64, env: x86_64 }
# - { sys: mingw32, env: i686 }
- { sys: clang64, env: clang-x86_64 }
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
install: mingw-w64-${{matrix.env}}-rust base base-devel unzip git
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 500
- run: cargo test
asan:
name: Address Sanitizer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 500
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- name: cargo test
run: |
cargo test -Zbuild-std --target x86_64-unknown-linux-gnu
env:
RUSTFLAGS: -Zsanitizer=address
valgrind:
name: Valgrind
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 500
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@valgrind
- run: cargo test
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "valgrind --error-exitcode=1 --track-origins=yes"
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all --check