rust/.github/workflows/main.yml

233 lines
6.8 KiB
YAML
Raw Normal View History

2020-03-13 12:25:18 -05:00
name: CI
on:
- push
- pull_request
jobs:
2021-12-30 05:09:44 -06:00
rustfmt:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
2022-04-30 06:40:16 -05:00
- uses: actions/checkout@v3
2021-12-30 05:09:44 -06:00
- name: Install rustfmt
run: |
rustup component add rustfmt
- name: Rustfmt
run: |
cargo fmt --check
2022-10-26 08:35:18 -05:00
rustfmt --check build_system/mod.rs
2021-12-30 05:09:44 -06:00
2020-03-13 12:25:18 -05:00
build:
runs-on: ${{ matrix.os }}
2021-03-09 09:30:31 -06:00
timeout-minutes: 60
2020-03-13 12:25:18 -05:00
strategy:
fail-fast: false
matrix:
2021-02-25 07:54:52 -06:00
include:
- os: ubuntu-20.04 # FIXME switch to ubuntu-22.04 once #1303 is fixed
2022-09-27 06:29:52 -05:00
env:
TARGET_TRIPLE: x86_64-unknown-linux-gnu
2021-02-25 07:54:52 -06:00
- os: macos-latest
2022-09-27 06:29:52 -05:00
env:
TARGET_TRIPLE: x86_64-apple-darwin
2021-02-25 07:54:52 -06:00
# cross-compile from Linux to Windows using mingw
- os: ubuntu-latest
env:
TARGET_TRIPLE: x86_64-pc-windows-gnu
- os: ubuntu-latest
env:
TARGET_TRIPLE: aarch64-unknown-linux-gnu
2022-12-03 17:23:01 -06:00
# s390x requires QEMU 6.1 or greater, we could build it from source, but ubuntu 22.04 comes with 6.2 by default
- os: ubuntu-latest
env:
TARGET_TRIPLE: s390x-unknown-linux-gnu
2020-03-13 12:25:18 -05:00
steps:
2022-04-30 06:40:16 -05:00
- uses: actions/checkout@v3
2020-03-13 12:25:18 -05:00
- name: Cache cargo installed crates
uses: actions/cache@v3
2020-03-13 12:25:18 -05:00
with:
path: ~/.cargo/bin
2020-08-19 07:14:32 -05:00
key: ${{ runner.os }}-cargo-installed-crates
2020-03-13 12:25:18 -05:00
2020-08-19 07:14:32 -05:00
- name: Cache cargo registry and index
uses: actions/cache@v3
with:
2020-08-19 07:14:32 -05:00
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-registry-and-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v3
with:
2022-12-01 09:49:34 -06:00
path: build/cg_clif
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }}
2021-02-25 07:54:52 -06:00
- name: Install MinGW toolchain and wine
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
run: |
sudo apt-get update
2021-02-25 07:54:52 -06:00
sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
rustup target add x86_64-pc-windows-gnu
- name: Install AArch64 toolchain and qemu
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu qemu-user
2022-12-03 17:23:01 -06:00
- name: Install s390x toolchain and qemu
if: matrix.env.TARGET_TRIPLE == 's390x-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y gcc-s390x-linux-gnu qemu-user
2020-03-13 12:25:18 -05:00
- name: Prepare dependencies
run: |
git config --global user.email "user@example.com"
git config --global user.name "User"
2021-06-11 11:50:01 -05:00
./y.rs prepare
- name: Build without unstable features
env:
TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
# This is the config rust-lang/rust uses for builds
run: ./y.rs build --no-unstable-features
2021-07-02 05:54:09 -05:00
- name: Build
run: ./y.rs build --sysroot none
2020-03-13 12:25:18 -05:00
- name: Test
2021-02-25 07:54:52 -06:00
env:
TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
2020-03-13 12:25:18 -05:00
run: |
# Enable backtraces for easier debugging
export RUST_BACKTRACE=1
2020-03-13 12:25:18 -05:00
# Reduce amount of benchmark runs as they are slow
export COMPILE_RUNS=2
export RUN_RUNS=2
# Enable extra checks
export CG_CLIF_ENABLE_VERIFIER=1
2022-07-30 04:32:54 -05:00
./y.rs test
2020-11-02 11:24:21 -06:00
- name: Package prebuilt cg_clif
run: tar cvfJ cg_clif.tar.xz dist
2020-11-02 11:24:21 -06:00
- name: Upload prebuilt cg_clif
2021-02-25 07:54:52 -06:00
if: matrix.env.TARGET_TRIPLE != 'x86_64-pc-windows-gnu'
2020-11-02 11:24:21 -06:00
uses: actions/upload-artifact@v2
with:
name: cg_clif-${{ matrix.env.TARGET_TRIPLE }}
2020-11-02 11:24:21 -06:00
path: cg_clif.tar.xz
- name: Upload prebuilt cg_clif (cross compile)
if: matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
uses: actions/upload-artifact@v3
with:
name: cg_clif-${{ runner.os }}-cross-x86_64-mingw
path: cg_clif.tar.xz
2021-06-18 06:41:20 -05:00
2022-08-02 02:31:50 -05:00
windows:
runs-on: ${{ matrix.os }}
2021-06-18 06:41:20 -05:00
timeout-minutes: 60
2022-08-02 02:31:50 -05:00
strategy:
fail-fast: false
matrix:
include:
# Native Windows build with MSVC
- os: windows-latest
2022-09-27 06:29:52 -05:00
env:
TARGET_TRIPLE: x86_64-pc-windows-msvc
2022-08-02 02:31:50 -05:00
# cross-compile from Windows to Windows MinGW
- os: windows-latest
env:
TARGET_TRIPLE: x86_64-pc-windows-gnu
2021-06-18 06:41:20 -05:00
steps:
2022-04-30 06:40:16 -05:00
- uses: actions/checkout@v3
2021-06-18 06:41:20 -05:00
2022-09-27 01:26:12 -05:00
- name: Cache cargo installed crates
uses: actions/cache@v3
2022-09-27 01:26:12 -05:00
with:
path: ~/.cargo/bin
key: ${{ runner.os }}-${{ matrix.env.TARGET_TRIPLE }}-cargo-installed-crates
- name: Cache cargo registry and index
uses: actions/cache@v3
2022-09-27 01:26:12 -05:00
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-${{ matrix.env.TARGET_TRIPLE }}-cargo-registry-and-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v3
2022-09-27 01:26:12 -05:00
with:
2022-12-01 09:49:34 -06:00
path: build/cg_clif
2022-09-27 01:26:12 -05:00
key: ${{ runner.os }}-${{ matrix.env.TARGET_TRIPLE }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }}
2021-06-18 06:41:20 -05:00
2022-08-02 02:31:50 -05:00
- name: Set MinGW as the default toolchain
if: matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
run: rustup set default-host x86_64-pc-windows-gnu
2021-06-18 06:41:20 -05:00
- name: Prepare dependencies
run: |
git config --global user.email "user@example.com"
git config --global user.name "User"
git config --global core.autocrlf false
rustc y.rs -o y.exe -g
./y.exe prepare
2022-08-02 02:31:50 -05:00
- name: Build without unstable features
env:
TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
# This is the config rust-lang/rust uses for builds
run: ./y.rs build --no-unstable-features
2021-06-18 06:41:20 -05:00
- name: Build
2022-08-02 02:31:50 -05:00
run: ./y.rs build --sysroot none
- name: Test
2021-06-18 06:41:20 -05:00
run: |
# Enable backtraces for easier debugging
2022-08-02 02:31:50 -05:00
$Env:RUST_BACKTRACE=1
2021-06-18 06:41:20 -05:00
# Reduce amount of benchmark runs as they are slow
2022-08-02 02:31:50 -05:00
$Env:COMPILE_RUNS=2
$Env:RUN_RUNS=2
2021-06-18 06:41:20 -05:00
# Enable extra checks
2022-08-02 02:31:50 -05:00
$Env:CG_CLIF_ENABLE_VERIFIER=1
2022-10-26 08:35:18 -05:00
2022-09-26 07:44:55 -05:00
# WIP Disable some tests
2022-10-26 08:35:18 -05:00
2022-09-26 07:44:55 -05:00
# This fails due to some weird argument handling by hyperfine, not an actual regression
# more of a build system issue
(Get-Content config.txt) -replace '(bench.simple-raytracer)', '# $1' | Out-File config.txt
2022-10-26 08:35:18 -05:00
# This fails with a different output than expected
2022-09-26 07:44:55 -05:00
(Get-Content config.txt) -replace '(test.regex-shootout-regex-dna)', '# $1' | Out-File config.txt
2021-06-18 06:41:20 -05:00
2022-08-02 02:31:50 -05:00
./y.exe test
2021-06-18 06:41:20 -05:00
- name: Package prebuilt cg_clif
# don't use compression as xzip isn't supported by tar on windows and bzip2 hangs
run: tar cvf cg_clif.tar dist
2021-06-18 06:41:20 -05:00
- name: Upload prebuilt cg_clif
uses: actions/upload-artifact@v3
with:
name: cg_clif-${{ matrix.env.TARGET_TRIPLE }}
path: cg_clif.tar