2020-01-21 11:43:57 -06:00
|
|
|
name: Clippy Test (bors)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-02-12 04:02:07 -06:00
|
|
|
branches:
|
|
|
|
- auto
|
|
|
|
- try
|
2020-01-21 11:43:57 -06:00
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
|
2020-02-07 15:24:41 -06:00
|
|
|
NO_FMT_TEST: 1
|
2022-08-31 08:24:45 -05:00
|
|
|
CARGO_INCREMENTAL: 0
|
2020-01-21 11:43:57 -06:00
|
|
|
|
2020-10-23 15:16:59 -05:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2020-01-21 11:43:57 -06:00
|
|
|
jobs:
|
2020-01-21 14:40:40 -06:00
|
|
|
changelog:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
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-12-20 10:19:49 -06:00
|
|
|
|
2020-01-21 14:40:40 -06:00
|
|
|
- name: Checkout
|
2024-01-11 10:27:03 -06:00
|
|
|
uses: actions/checkout@v4
|
2020-01-21 14:40:40 -06:00
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
2020-02-07 15:24:41 -06:00
|
|
|
|
|
|
|
# Run
|
2020-01-21 14:40:40 -06:00
|
|
|
- name: Check Changelog
|
|
|
|
run: |
|
|
|
|
MESSAGE=$(git log --format=%B -n 1)
|
|
|
|
PR=$(echo "$MESSAGE" | grep -o "#[0-9]*" | head -1 | sed -e 's/^#//')
|
2021-04-22 04:31:13 -05:00
|
|
|
body=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -s "https://api.github.com/repos/rust-lang/rust-clippy/pulls/$PR" | \
|
|
|
|
python -c "import sys, json; print(json.load(sys.stdin)['body'])")
|
|
|
|
output=$(grep "^changelog:\s*\S" <<< "$body" | sed "s/changelog:\s*//g") || {
|
2020-01-21 14:40:40 -06:00
|
|
|
echo "ERROR: PR body must contain 'changelog: ...'"
|
|
|
|
exit 1
|
2021-04-22 04:31:13 -05:00
|
|
|
}
|
|
|
|
if [[ "$output" = "none" ]]; then
|
2020-01-21 14:40:40 -06:00
|
|
|
echo "WARNING: changelog is 'none'"
|
2021-04-22 04:31:13 -05:00
|
|
|
else
|
|
|
|
echo "changelog: $output"
|
2020-01-21 14:40:40 -06:00
|
|
|
fi
|
2020-01-30 10:03:45 -06:00
|
|
|
env:
|
|
|
|
PYTHONIOENCODING: 'utf-8'
|
2020-01-21 11:43:57 -06:00
|
|
|
base:
|
2020-01-21 14:40:40 -06:00
|
|
|
needs: changelog
|
2020-01-21 11:43:57 -06:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-09-12 11:13:53 -05:00
|
|
|
include:
|
2020-01-21 11:43:57 -06:00
|
|
|
- os: ubuntu-latest
|
|
|
|
host: x86_64-unknown-linux-gnu
|
2023-09-12 11:13:53 -05:00
|
|
|
- os: ubuntu-latest
|
2020-01-21 11:43:57 -06:00
|
|
|
host: i686-unknown-linux-gnu
|
|
|
|
- os: windows-latest
|
2023-09-12 11:13:53 -05:00
|
|
|
host: x86_64-pc-windows-msvc
|
2024-03-07 10:19:29 -06:00
|
|
|
- os: macos-13
|
2020-01-21 11:43:57 -06:00
|
|
|
host: x86_64-apple-darwin
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
# NOTE: If you modify this job, make sure you copy the changes to clippy.yml
|
2020-01-21 11:43:57 -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
|
2024-01-11 10:27:03 -06:00
|
|
|
uses: actions/checkout@v4
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2023-09-12 11:13:53 -05:00
|
|
|
- name: Install i686 dependencies
|
|
|
|
if: matrix.host == 'i686-unknown-linux-gnu'
|
|
|
|
run: |
|
|
|
|
sudo dpkg --add-architecture i386
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gcc-multilib zlib1g-dev:i386
|
|
|
|
|
2020-12-20 10:19:49 -06:00
|
|
|
- name: Install toolchain
|
2023-09-12 11:13:53 -05:00
|
|
|
run: |
|
|
|
|
rustup set default-host ${{ matrix.host }}
|
|
|
|
rustup show active-toolchain
|
2020-01-21 11:43:57 -06:00
|
|
|
|
2020-02-07 15:24:41 -06:00
|
|
|
# Run
|
2020-12-20 10:19:49 -06:00
|
|
|
- name: Build
|
2023-07-17 03:19:29 -05:00
|
|
|
run: cargo build --tests --features deny-warnings,internal
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
- name: Test
|
2023-09-12 11:13:53 -05:00
|
|
|
if: matrix.host == 'x86_64-unknown-linux-gnu'
|
2022-01-13 06:18:19 -06:00
|
|
|
run: cargo test --features deny-warnings,internal
|
|
|
|
|
|
|
|
- name: Test
|
2023-09-12 11:13:53 -05:00
|
|
|
if: matrix.host != 'x86_64-unknown-linux-gnu'
|
2022-01-13 06:18:19 -06:00
|
|
|
run: cargo test --features deny-warnings,internal -- --skip dogfood
|
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
|
2023-11-02 11:35:56 -05:00
|
|
|
run: cargo test --features deny-warnings
|
2021-12-30 08:10:43 -06:00
|
|
|
working-directory: clippy_utils
|
|
|
|
|
2023-11-02 11:35:56 -05:00
|
|
|
- name: Test clippy_config
|
|
|
|
run: cargo test --features deny-warnings
|
|
|
|
working-directory: clippy_config
|
|
|
|
|
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-21 11:43:57 -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-21 11:43:57 -06:00
|
|
|
- name: Test clippy-driver
|
2024-03-07 10:19:29 -06:00
|
|
|
run: |
|
|
|
|
TOOLCHAIN=$(rustup show active-toolchain | cut -f1 -d' ')
|
|
|
|
rustup run $TOOLCHAIN bash .github/driver.sh
|
2020-01-26 08:13:14 -06:00
|
|
|
env:
|
|
|
|
OS: ${{ runner.os }}
|
2020-01-21 11:43:57 -06:00
|
|
|
|
2022-06-16 10:39:06 -05:00
|
|
|
metadata_collection:
|
2022-07-18 02:39:37 -05:00
|
|
|
needs: changelog
|
2022-06-16 10:39:06 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
# Setup
|
|
|
|
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
|
|
|
|
with:
|
|
|
|
github_token: "${{ secrets.github_token }}"
|
|
|
|
|
|
|
|
- name: Checkout
|
2024-01-11 10:27:03 -06:00
|
|
|
uses: actions/checkout@v4
|
2022-06-16 10:39:06 -05:00
|
|
|
|
|
|
|
- name: Install toolchain
|
|
|
|
run: rustup show active-toolchain
|
|
|
|
|
|
|
|
- name: Test metadata collection
|
|
|
|
run: cargo collect-metadata
|
|
|
|
|
2023-01-27 14:09:08 -06:00
|
|
|
- name: Test lint_configuration.md is up-to-date
|
|
|
|
run: |
|
|
|
|
echo "run \`cargo collect-metadata\` if this fails"
|
|
|
|
git update-index --refresh
|
|
|
|
|
2020-01-31 07:42:44 -06:00
|
|
|
integration_build:
|
2020-01-22 13:00:41 -06:00
|
|
|
needs: changelog
|
2020-01-31 07:42:44 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-02-07 15:24:41 -06:00
|
|
|
# Setup
|
2020-01-31 07:42:44 -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
|
2024-01-11 10:27:03 -06:00
|
|
|
uses: actions/checkout@v4
|
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-31 07:42:44 -06:00
|
|
|
|
2020-02-07 15:24:41 -06:00
|
|
|
# Run
|
2020-01-31 07:42:44 -06:00
|
|
|
- name: Build Integration Test
|
2023-04-11 08:31:08 -05:00
|
|
|
env:
|
|
|
|
CARGO_PROFILE_DEV_SPLIT_DEBUGINFO: off
|
2020-01-31 07:42:44 -06:00
|
|
|
run: cargo test --test integration --features integration --no-run
|
2020-02-07 15:24:41 -06:00
|
|
|
|
|
|
|
# Upload
|
2020-01-31 07:42:44 -06:00
|
|
|
- name: Extract Binaries
|
|
|
|
run: |
|
|
|
|
DIR=$CARGO_TARGET_DIR/debug
|
2023-07-31 16:53:53 -05:00
|
|
|
find $DIR/deps/integration-* -executable ! -type d | xargs -I {} mv {} $DIR/integration
|
2020-01-31 07:42:44 -06:00
|
|
|
find $DIR ! -executable -o -type d ! -path $DIR | xargs rm -rf
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-31 07:42:44 -06:00
|
|
|
- name: Upload Binaries
|
2023-07-31 16:53:53 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-01-31 07:42:44 -06:00
|
|
|
with:
|
2023-07-31 16:53:53 -05:00
|
|
|
name: binaries
|
|
|
|
path: target/debug
|
2020-01-31 07:42:44 -06:00
|
|
|
|
|
|
|
integration:
|
|
|
|
needs: integration_build
|
2020-01-22 13:00:41 -06:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
2020-01-23 08:47:11 -06:00
|
|
|
max-parallel: 6
|
2020-01-22 13:00:41 -06:00
|
|
|
matrix:
|
|
|
|
integration:
|
2023-12-16 07:12:50 -06:00
|
|
|
- 'matthiaskrgr/clippy_ci_panic_test'
|
2020-01-22 13:00:41 -06:00
|
|
|
- 'rust-lang/cargo'
|
|
|
|
- 'rust-lang/chalk'
|
2020-04-16 06:17:06 -05:00
|
|
|
- 'rust-lang/rustfmt'
|
2020-01-22 13:00:41 -06:00
|
|
|
- 'Marwes/combine'
|
|
|
|
- 'Geal/nom'
|
|
|
|
- 'rust-lang/stdarch'
|
|
|
|
- 'serde-rs/serde'
|
2023-07-31 16:53:53 -05:00
|
|
|
- 'chronotope/chrono'
|
2020-01-22 13:00:41 -06:00
|
|
|
- 'hyperium/hyper'
|
|
|
|
- 'rust-random/rand'
|
|
|
|
- 'rust-lang/futures-rs'
|
|
|
|
- 'rust-itertools/itertools'
|
|
|
|
- 'rust-lang-nursery/failure'
|
|
|
|
- 'rust-lang/log'
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
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
|
2024-01-11 10:27:03 -06:00
|
|
|
uses: actions/checkout@v4
|
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 13:00:41 -06:00
|
|
|
|
2020-02-07 15:24:41 -06:00
|
|
|
# Download
|
2020-01-31 07:42:44 -06:00
|
|
|
- name: Download target dir
|
2023-07-31 16:53:53 -05:00
|
|
|
uses: actions/download-artifact@v3
|
2020-01-31 07:42:44 -06:00
|
|
|
with:
|
2023-07-31 16:53:53 -05:00
|
|
|
name: binaries
|
|
|
|
path: target/debug
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-31 07:42:44 -06:00
|
|
|
- name: Make Binaries Executable
|
|
|
|
run: chmod +x $CARGO_TARGET_DIR/debug/*
|
2020-02-07 15:24:41 -06:00
|
|
|
|
|
|
|
# Run
|
2020-01-22 13:00:41 -06:00
|
|
|
- name: Test ${{ matrix.integration }}
|
2020-12-20 10:19:49 -06:00
|
|
|
run: |
|
2024-03-07 10:19:29 -06:00
|
|
|
TOOLCHAIN=$(rustup show active-toolchain | cut -f1 -d' ')
|
|
|
|
rustup run $TOOLCHAIN $CARGO_TARGET_DIR/debug/integration --show-output
|
2020-01-22 13:00:41 -06:00
|
|
|
env:
|
|
|
|
INTEGRATION: ${{ matrix.integration }}
|
2020-02-04 10:33:50 -06:00
|
|
|
|
|
|
|
# These jobs doesn't actually test anything, but they're only used to tell
|
|
|
|
# bors the build completed, as there is no practical way to detect when a
|
|
|
|
# workflow is successful listening to webhooks only.
|
|
|
|
#
|
|
|
|
# ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
|
|
|
|
|
|
|
|
end-success:
|
|
|
|
name: bors test finished
|
|
|
|
if: github.event.pusher.name == 'bors' && success()
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-18 02:39:37 -05:00
|
|
|
needs: [changelog, base, metadata_collection, integration_build, integration]
|
2020-02-04 10:33:50 -06:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Mark the job as successful
|
|
|
|
run: exit 0
|
|
|
|
|
|
|
|
end-failure:
|
|
|
|
name: bors test finished
|
|
|
|
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-18 02:39:37 -05:00
|
|
|
needs: [changelog, base, metadata_collection, integration_build, integration]
|
2020-02-04 10:33:50 -06:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Mark the job as a failure
|
|
|
|
run: exit 1
|