rust/.github/workflows/ci.yml

153 lines
5.0 KiB
YAML
Raw Normal View History

2020-05-10 09:54:30 -05:00
name: CI
on:
- push
- pull_request
2022-09-26 05:21:51 -05:00
permissions:
contents: read
2022-06-29 08:38:13 -05:00
env:
# Enable backtraces for easier debugging
RUST_BACKTRACE: 1
2020-05-10 09:54:30 -05:00
jobs:
build:
runs-on: ubuntu-22.04
2020-05-10 09:54:30 -05:00
strategy:
fail-fast: false
matrix:
2022-06-24 14:47:55 -05:00
libgccjit_version:
2023-01-09 16:04:59 -06:00
- { gcc: "libgccjit.so", extra: "", env_extra: "", artifacts_branch: "master" }
- { gcc: "libgccjit_without_int128.so", extra: "", env_extra: "", artifacts_branch: "master-without-128bit-integers" }
- { gcc: "libgccjit12.so", extra: "--no-default-features", env_extra: "TEST_FLAGS='-Cpanic=abort -Zpanic-abort-tests'", artifacts_branch: "gcc12" }
2022-06-29 10:35:57 -05:00
commands: [
"--mini-tests",
2022-10-18 16:35:47 -05:00
"--std-tests",
2022-10-24 09:47:55 -05:00
# FIXME: re-enable asm tests when GCC can emit in the right syntax.
# "--asm-tests",
2022-06-29 10:35:57 -05:00
"--test-libcore",
2022-07-07 14:34:38 -05:00
"--extended-rand-tests",
"--extended-regex-example-tests",
"--extended-regex-tests",
"--test-successful-rustc --nb-parts 2 --current-part 0",
"--test-successful-rustc --nb-parts 2 --current-part 1",
2022-06-30 09:35:53 -05:00
"--test-failing-rustc",
2022-06-29 10:35:57 -05:00
]
2020-05-10 09:54:30 -05:00
steps:
2022-10-15 07:39:43 -05:00
- uses: actions/checkout@v3
2020-05-10 09:54:30 -05:00
2022-10-15 07:39:43 -05:00
- uses: actions/checkout@v3
with:
repository: llvm/llvm-project
path: llvm
2020-05-10 09:54:30 -05:00
- name: Install packages
# `llvm-14-tools` is needed to install the `FileCheck` binary which is used for asm tests.
run: sudo apt-get install ninja-build ripgrep llvm-14-tools
- name: Install libgccjit12
if: matrix.libgccjit_version.gcc == 'libgccjit12.so'
run: sudo apt-get install libgccjit-12-dev
2020-05-10 09:54:30 -05:00
- name: Download artifact
if: matrix.libgccjit_version.gcc != 'libgccjit12.so'
2020-05-10 09:54:30 -05:00
uses: dawidd6/action-download-artifact@v2
with:
workflow: main.yml
2022-06-24 14:47:55 -05:00
name: ${{ matrix.libgccjit_version.gcc }}
2020-05-10 09:54:30 -05:00
path: gcc-build
repo: antoyo/gcc
2022-09-26 05:21:51 -05:00
branch: ${{ matrix.libgccjit_version.artifacts_branch }}
event: push
search_artifacts: true # Because, instead, the action only check the last job ran and that won't work since we want multiple artifacts.
2020-05-10 09:54:30 -05:00
- name: Setup path to libgccjit
if: matrix.libgccjit_version.gcc == 'libgccjit12.so'
run: echo /usr/lib/gcc/x86_64-linux-gnu/12 > gcc_path
- name: Setup path to libgccjit
if: matrix.libgccjit_version.gcc != 'libgccjit12.so'
2020-05-10 09:54:30 -05:00
run: |
echo $(readlink -f gcc-build) > gcc_path
# NOTE: the filename is still libgccjit.so even when the artifact name is different.
2020-05-10 09:54:30 -05:00
ln gcc-build/libgccjit.so gcc-build/libgccjit.so.0
- name: Set env
2021-08-28 10:34:47 -05:00
run: |
echo "LIBRARY_PATH=$(cat gcc_path)" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=$(cat gcc_path)" >> $GITHUB_ENV
echo "workspace="$GITHUB_WORKSPACE >> $GITHUB_ENV
- name: Set RUST_COMPILER_RT_ROOT
run: echo "RUST_COMPILER_RT_ROOT="${{ env.workspace }}/llvm/compiler-rt >> $GITHUB_ENV
2020-05-10 09:54:30 -05:00
- name: Cache cargo installed crates
2022-10-15 07:39:43 -05:00
uses: actions/cache@v3
2020-05-10 09:54:30 -05:00
with:
path: ~/.cargo/bin
key: cargo-installed-crates2-ubuntu-latest
- name: Cache cargo registry
2022-10-15 07:39:43 -05:00
uses: actions/cache@v3
2020-05-10 09:54:30 -05:00
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry2-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
2022-10-15 07:39:43 -05:00
uses: actions/cache@v3
2020-05-10 09:54:30 -05:00
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
2022-10-15 07:39:43 -05:00
uses: actions/cache@v3
2020-05-10 09:54:30 -05:00
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain') }}
2022-07-09 14:36:23 -05:00
- name: Cache rust repository
# We only clone the rust repository for rustc tests
if: ${{ contains(matrix.commands, 'rustc') }}
2022-10-15 07:39:43 -05:00
uses: actions/cache@v3
2022-07-09 14:36:23 -05:00
id: cache-rust-repository
with:
path: rust
key: ${{ runner.os }}-packages-${{ hashFiles('rust/.git/HEAD') }}
2020-05-10 09:54:30 -05:00
- name: Build
run: |
./prepare_build.sh
2023-01-09 16:04:59 -06:00
${{ matrix.libgccjit_version.env_extra }} ./build.sh ${{ matrix.libgccjit_version.extra }}
2023-01-09 16:42:35 -06:00
${{ matrix.libgccjit_version.env_extra }} cargo test ${{ matrix.libgccjit_version.extra }}
./clean_all.sh
2020-05-10 09:54:30 -05:00
- name: Prepare dependencies
run: |
git config --global user.email "user@example.com"
git config --global user.name "User"
./prepare.sh
# Compile is a separate step, as the actions-rs/cargo action supports error annotations
- name: Compile
uses: actions-rs/cargo@v1.0.3
with:
command: build
args: --release
2022-06-30 09:35:53 -05:00
- name: Add more failing tests for GCC 12
if: ${{ matrix.libgccjit_version.gcc == 'libgccjit12.so' }}
run: cat failing-ui-tests12.txt >> failing-ui-tests.txt
2022-06-29 10:35:57 -05:00
- name: Run tests
run: |
2023-01-09 16:04:59 -06:00
${{ matrix.libgccjit_version.env_extra }} ./test.sh --release --clean --build-sysroot ${{ matrix.commands }} ${{ matrix.libgccjit_version.extra }}
duplicates:
runs-on: ubuntu-latest
steps:
2022-10-15 07:39:43 -05:00
- uses: actions/checkout@v3
- run: python tools/check_intrinsics_duplicates.py