Skip to content

Build

Build #117

Workflow file for this run

name: Build
on:
pull_request:
paths:
- 'autorun/src/**'
- 'autorun-shared/src/**'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Build DLL
run: |
rustup default nightly
cd autorun
cargo build --release --verbose
# In the future make this run on an x86 machine https://github.com/actions/runner/issues/423
build86:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Build DLL
run: |
rustup default nightly
rustup target add i686-pc-windows-msvc
cd autorun
cargo build --release --verbose --target=i686-pc-windows-msvc