2020-05-10 14:54:30 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
2023-01-26 22:31:49 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Enable backtraces for easier debugging
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
|
2020-05-10 14:54:30 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2023-03-05 17:03:19 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2020-05-10 14:54:30 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
2022-03-26 17:29:37 +00:00
|
|
|
matrix:
|
2023-01-26 22:31:49 +00:00
|
|
|
libgccjit_version:
|
2024-03-05 18:58:36 +00:00
|
|
|
- { gcc: "gcc-13.deb" }
|
|
|
|
- { gcc: "gcc-13-without-int128.deb" }
|
2023-01-26 22:31:49 +00:00
|
|
|
commands: [
|
2023-03-05 17:03:19 +00:00
|
|
|
"--mini-tests",
|
|
|
|
"--std-tests",
|
|
|
|
# FIXME: re-enable asm tests when GCC can emit in the right syntax.
|
|
|
|
# "--asm-tests",
|
|
|
|
"--test-libcore",
|
|
|
|
"--extended-rand-tests",
|
|
|
|
"--extended-regex-example-tests",
|
|
|
|
"--extended-regex-tests",
|
2023-01-26 22:31:49 +00:00
|
|
|
"--test-successful-rustc --nb-parts 2 --current-part 0",
|
|
|
|
"--test-successful-rustc --nb-parts 2 --current-part 1",
|
2024-03-05 18:58:36 +00:00
|
|
|
"--projects",
|
2023-01-26 22:31:49 +00:00
|
|
|
]
|
2020-05-10 14:54:30 +00:00
|
|
|
|
|
|
|
steps:
|
2023-01-26 22:31:49 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-05-10 14:54:30 +00:00
|
|
|
|
2024-01-12 01:42:00 +00:00
|
|
|
# `rustup show` installs from rust-toolchain.toml
|
|
|
|
- name: Setup rust toolchain
|
|
|
|
run: rustup show
|
|
|
|
|
|
|
|
- name: Setup rust cache
|
|
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
|
2020-05-10 14:54:30 +00:00
|
|
|
- name: Install packages
|
2023-03-05 17:03:19 +00:00
|
|
|
# `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
|
|
|
|
|
2024-03-05 18:58:36 +00:00
|
|
|
- name: Install rustfmt
|
|
|
|
run: rustup component add rustfmt
|
|
|
|
|
2020-05-10 14:54:30 +00:00
|
|
|
- name: Download artifact
|
2024-03-05 18:58:36 +00:00
|
|
|
run: curl -LO https://github.com/antoyo/gcc/releases/latest/download/${{ matrix.libgccjit_version.gcc }}
|
2020-05-10 14:54:30 +00:00
|
|
|
|
|
|
|
- name: Setup path to libgccjit
|
|
|
|
run: |
|
2024-03-05 18:58:36 +00:00
|
|
|
sudo dpkg --force-overwrite -i ${{ matrix.libgccjit_version.gcc }}
|
|
|
|
echo 'gcc-path = "/usr/lib/"' > config.toml
|
2020-05-10 14:54:30 +00:00
|
|
|
|
2022-03-26 17:29:37 +00:00
|
|
|
- name: Set env
|
2021-08-28 15:34:47 +00:00
|
|
|
run: |
|
2022-03-26 17:29:37 +00:00
|
|
|
echo "workspace="$GITHUB_WORKSPACE >> $GITHUB_ENV
|
2024-03-05 18:58:36 +00:00
|
|
|
echo "LIBRARY_PATH=/usr/lib" >> $GITHUB_ENV
|
|
|
|
echo "LD_LIBRARY_PATH=/usr/lib" >> $GITHUB_ENV
|
2020-05-10 14:54:30 +00:00
|
|
|
|
2023-03-05 17:03:19 +00:00
|
|
|
#- name: Cache rust repository
|
|
|
|
## We only clone the rust repository for rustc tests
|
|
|
|
#if: ${{ contains(matrix.commands, 'rustc') }}
|
|
|
|
#uses: actions/cache@v3
|
|
|
|
#id: cache-rust-repository
|
|
|
|
#with:
|
|
|
|
#path: rust
|
|
|
|
#key: ${{ runner.os }}-packages-${{ hashFiles('rust/.git/HEAD') }}
|
2020-05-10 14:54:30 +00:00
|
|
|
|
2022-06-07 02:04:37 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2023-08-18 14:06:20 +00:00
|
|
|
./y.sh prepare --only-libcore
|
2024-03-05 18:58:36 +00:00
|
|
|
./y.sh build
|
|
|
|
cargo test
|
2023-12-20 13:58:43 +00:00
|
|
|
./y.sh clean all
|
2022-06-07 02:04:37 +00:00
|
|
|
|
2020-05-10 14:54:30 +00:00
|
|
|
- name: Prepare dependencies
|
|
|
|
run: |
|
|
|
|
git config --global user.email "user@example.com"
|
|
|
|
git config --global user.name "User"
|
2023-08-18 14:06:20 +00:00
|
|
|
./y.sh prepare
|
2020-05-10 14:54:30 +00:00
|
|
|
|
2023-10-09 19:53:34 +00:00
|
|
|
- name: Add more failing tests because the sysroot is not compiled with LTO
|
2024-01-26 01:20:12 +00:00
|
|
|
run: cat tests/failing-non-lto-tests.txt >> tests/failing-ui-tests.txt
|
2023-05-12 15:40:04 +00:00
|
|
|
|
2023-01-26 22:31:49 +00:00
|
|
|
- name: Run tests
|
2022-06-07 02:04:37 +00:00
|
|
|
run: |
|
2024-03-05 18:58:36 +00:00
|
|
|
./y.sh test --release --clean --build-sysroot ${{ matrix.commands }}
|
|
|
|
|
|
|
|
- name: Check formatting
|
|
|
|
run: cargo fmt -- --check
|
2022-06-07 02:04:37 +00:00
|
|
|
|
2023-03-05 17:03:19 +00:00
|
|
|
duplicates:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: python tools/check_intrinsics_duplicates.py
|
2024-03-05 18:58:36 +00:00
|
|
|
|
|
|
|
build_system:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Test build system
|
|
|
|
run: |
|
|
|
|
cd build_system
|
|
|
|
cargo test
|