Merge accuracy improvements from Area5150 bus sniff research #5
Workflow file for this run
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: Windows | |
on: | |
push: | |
branches: | |
- version_0_2_0 | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
msys2: | |
name: martypc | |
runs-on: windows-2022 | |
defaults: | |
run: | |
shell: msys2 {0} | |
strategy: | |
matrix: | |
environment: | |
- msystem: MINGW64 | |
prefix: mingw-w64-x86_64 | |
steps: | |
- name: Prepare MSYS2 environment | |
uses: msys2/setup-msys2@v2 | |
with: | |
release: false | |
update: true | |
msystem: ${{ matrix.environment.msystem }} | |
pacboy: >- | |
rust:p | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Cargo build | |
run: cargo build -r --features ega | |
- name: Copy files into install dir | |
run: cp README.md target/release/martypc install | |
- name: Rename install directory | |
run: mv install martypc | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'martypc-windows-gha${{ github.run_number }}' | |
path: martypc |