2020-01-22 10:06:13 -06:00
|
|
|
name: Clippy Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Ignore bors branches, since they are covered by `clippy_bors.yml`
|
2020-02-12 04:02:07 -06:00
|
|
|
branches-ignore:
|
|
|
|
- auto
|
|
|
|
- try
|
2022-05-05 09:12:52 -05:00
|
|
|
# Don't run Clippy tests, when only text files were modified
|
2020-01-22 10:06:13 -06:00
|
|
|
paths-ignore:
|
|
|
|
- 'COPYRIGHT'
|
|
|
|
- 'LICENSE-*'
|
|
|
|
- '**.md'
|
|
|
|
- '**.txt'
|
|
|
|
pull_request:
|
2022-05-05 09:12:52 -05:00
|
|
|
# Don't run Clippy tests, when only text files were modified
|
2020-01-22 10:06:13 -06:00
|
|
|
paths-ignore:
|
|
|
|
- 'COPYRIGHT'
|
|
|
|
- 'LICENSE-*'
|
|
|
|
- '**.md'
|
|
|
|
- '**.txt'
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
|
2020-02-07 15:24:41 -06:00
|
|
|
NO_FMT_TEST: 1
|
2022-08-28 18:22:46 -05:00
|
|
|
CARGO_INCREMENTAL: 0
|
2022-10-13 07:33:04 -05:00
|
|
|
CARGO_UNSTABLE_SPARSE_REGISTRY: true
|
2020-01-22 10:06:13 -06:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
base:
|
2021-03-12 08:30:50 -06:00
|
|
|
# NOTE: If you modify this job, make sure you copy the changes to clippy_bors.yml
|
2022-12-06 12:13:53 -06:00
|
|
|
runs-on: ubuntu-20.04
|
2020-01-22 10:06:13 -06:00
|
|
|
|
|
|
|
steps:
|
2020-02-07 15:24:41 -06:00
|
|
|
# Setup
|
2020-01-23 07:40:37 -06:00
|
|
|
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
|
|
|
|
with:
|
|
|
|
github_token: "${{ secrets.github_token }}"
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-31 07:44:55 -06:00
|
|
|
- name: Checkout
|
2022-05-05 09:12:52 -05:00
|
|
|
uses: actions/checkout@v3.0.2
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-12-20 10:19:49 -06:00
|
|
|
- name: Install toolchain
|
|
|
|
run: rustup show active-toolchain
|
2020-01-22 10:06:13 -06:00
|
|
|
|
2020-02-07 15:24:41 -06:00
|
|
|
# Run
|
2020-01-22 10:06:13 -06:00
|
|
|
- name: Set LD_LIBRARY_PATH (Linux)
|
|
|
|
run: |
|
|
|
|
SYSROOT=$(rustc --print sysroot)
|
2020-10-23 15:16:59 -05:00
|
|
|
echo "LD_LIBRARY_PATH=${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" >> $GITHUB_ENV
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-22 10:06:13 -06:00
|
|
|
- name: Build
|
2022-01-13 06:18:19 -06:00
|
|
|
run: cargo build --features deny-warnings,internal
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
- name: Test
|
2022-01-13 06:18:19 -06:00
|
|
|
run: cargo test --features deny-warnings,internal
|
2021-01-02 09:29:43 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
- name: Test clippy_lints
|
2022-01-13 06:18:19 -06:00
|
|
|
run: cargo test --features deny-warnings,internal
|
2021-03-12 08:30:50 -06:00
|
|
|
working-directory: clippy_lints
|
|
|
|
|
2021-12-30 08:10:43 -06:00
|
|
|
- name: Test clippy_utils
|
2022-01-13 06:18:19 -06:00
|
|
|
run: cargo test --features deny-warnings,internal
|
2021-12-30 08:10:43 -06:00
|
|
|
working-directory: clippy_utils
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
- name: Test rustc_tools_util
|
|
|
|
run: cargo test --features deny-warnings
|
|
|
|
working-directory: rustc_tools_util
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-22 10:06:13 -06:00
|
|
|
- name: Test clippy_dev
|
|
|
|
run: cargo test --features deny-warnings
|
|
|
|
working-directory: clippy_dev
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-22 10:06:13 -06:00
|
|
|
- name: Test clippy-driver
|
2020-01-26 08:13:14 -06:00
|
|
|
run: bash .github/driver.sh
|
|
|
|
env:
|
|
|
|
OS: ${{ runner.os }}
|