rust/.github/workflows/ci.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

241 lines
7.5 KiB
YAML
Raw Normal View History

2022-04-13 09:13:36 -05:00
# Please make sure that the `needs` fields for both `end-success` and `end-failure`
# are updated when adding new jobs!
2019-11-18 02:13:31 -06:00
name: CI
on:
pull_request:
push:
branches:
2022-09-06 13:20:49 -05:00
- auto
- try
2023-10-05 07:03:44 -05:00
- automation/bors/try
2019-11-16 16:26:54 -06:00
2020-03-26 04:21:00 -05:00
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
2020-04-06 10:01:46 -05:00
CI: 1
2020-03-30 03:49:11 -05:00
RUST_BACKTRACE: short
2022-09-06 13:20:49 -05:00
RUSTFLAGS: "-D warnings -W unreachable-pub -W bare-trait-objects"
2020-03-26 04:21:00 -05:00
RUSTUP_MAX_RETRIES: 10
2019-11-16 16:26:54 -06:00
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
typescript: ${{ steps.filter.outputs.typescript }}
proc_macros: ${{ steps.filter.outputs.proc_macros }}
steps:
- uses: actions/checkout@v3
2024-02-07 11:24:35 -06:00
- uses: dorny/paths-filter@1441771bbfdd59dcd748680ee64ebd8faab1a242
id: filter
with:
filters: |
typescript:
- 'editors/code/**'
proc_macros:
- 'crates/proc-macro-api/**'
- 'crates/proc-macro-srv/**'
- 'crates/proc-macro-srv-cli/**'
2019-11-18 02:13:31 -06:00
rust:
needs: changes
2022-04-13 17:42:51 -05:00
if: github.repository == 'rust-lang/rust-analyzer'
2019-11-18 02:13:31 -06:00
name: Rust
2020-01-02 08:08:36 -06:00
runs-on: ${{ matrix.os }}
2020-04-05 08:45:57 -05:00
env:
2020-07-13 21:04:00 -05:00
CC: deny_c
RUST_CHANNEL: "${{ needs.changes.outputs.proc_macros == 'true' && 'nightly' || 'stable' }}"
USE_SYSROOT_ABI: "${{ needs.changes.outputs.proc_macros == 'true' && '--features sysroot-abi' || '' }}"
2020-03-04 10:01:38 -06:00
2020-01-02 08:08:36 -06:00
strategy:
2020-01-22 04:53:47 -06:00
fail-fast: false
2020-01-02 08:08:36 -06:00
matrix:
2020-08-18 02:38:32 -05:00
os: [ubuntu-latest, windows-latest, macos-latest]
2020-03-04 10:01:38 -06:00
steps:
2022-09-06 13:20:49 -05:00
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
2020-03-04 10:01:38 -06:00
2022-09-06 13:20:49 -05:00
- name: Install Rust toolchain
run: |
rustup update --no-self-update ${{ env.RUST_CHANNEL }}
rustup component add --toolchain ${{ env.RUST_CHANNEL }} rustfmt rust-src
rustup default ${{ env.RUST_CHANNEL }}
2020-03-04 10:01:38 -06:00
2022-09-06 13:20:49 -05:00
- name: Cache Dependencies
uses: Swatinem/rust-cache@988c164c3d0e93c4dbab36aaf5bbeb77425b2894
with:
key: ${{ env.RUST_CHANNEL }}
2020-03-04 10:01:38 -06:00
2022-10-18 01:12:49 -05:00
- name: Bump opt-level
if: matrix.os == 'ubuntu-latest'
run: sed -i '/\[profile.dev]/a opt-level=1' Cargo.toml
- name: Compile (tests)
run: cargo test --no-run --locked ${{ env.USE_SYSROOT_ABI }}
2020-03-04 10:01:38 -06:00
2022-10-18 01:12:49 -05:00
# It's faster to `test` before `build` ¯\_(ツ)_/¯
- name: Compile (rust-analyzer)
if: matrix.os == 'ubuntu-latest'
run: cargo build --quiet ${{ env.USE_SYSROOT_ABI }}
2022-10-18 01:12:49 -05:00
2022-09-06 13:20:49 -05:00
- name: Test
if: matrix.os == 'ubuntu-latest' || github.event_name == 'push'
run: cargo test ${{ env.USE_SYSROOT_ABI }} -- --nocapture --quiet
2020-03-04 10:01:38 -06:00
2023-08-22 01:26:04 -05:00
- name: Switch to stable toolchain
run: |
rustup update --no-self-update stable
2024-01-21 17:06:52 -06:00
rustup component add --toolchain stable rust-src clippy
2023-08-22 01:26:04 -05:00
rustup default stable
2022-10-18 01:12:49 -05:00
- name: Run analysis-stats on rust-analyzer
if: matrix.os == 'ubuntu-latest'
run: target/${{ matrix.target }}/debug/rust-analyzer analysis-stats .
- name: Run analysis-stats on rust std library
if: matrix.os == 'ubuntu-latest'
2023-08-28 02:22:33 -05:00
env:
RUSTC_BOOTSTRAP: 1
run: target/${{ matrix.target }}/debug/rust-analyzer analysis-stats --with-deps $(rustc --print sysroot)/lib/rustlib/src/rust/library/std
2022-10-18 01:12:49 -05:00
2024-01-21 17:06:52 -06:00
- name: clippy
2024-02-06 03:22:26 -06:00
if: matrix.os == 'windows-latest'
run: cargo clippy --all-targets -- -D clippy::disallowed_macros -D clippy::dbg_macro -D clippy::todo -D clippy::print_stdout -D clippy::print_stderr
2024-01-21 17:06:52 -06:00
2020-08-12 04:49:49 -05:00
# Weird targets to catch non-portable code
rust-cross:
2022-04-13 17:42:51 -05:00
if: github.repository == 'rust-lang/rust-analyzer'
2020-08-12 04:49:49 -05:00
name: Rust Cross
2020-07-14 04:01:18 -05:00
runs-on: ubuntu-latest
2020-08-12 04:49:49 -05:00
env:
targets: "powerpc-unknown-linux-gnu x86_64-unknown-linux-musl"
# The rust-analyzer binary is not expected to compile on WASM, but the IDE
# crate should
targets_ide: "wasm32-unknown-unknown"
2020-08-12 04:49:49 -05:00
2020-07-14 04:01:18 -05:00
steps:
2022-09-06 13:20:49 -05:00
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
run: |
rustup update --no-self-update stable
rustup target add ${{ env.targets }} ${{ env.targets_ide }}
- name: Cache Dependencies
uses: Swatinem/rust-cache@988c164c3d0e93c4dbab36aaf5bbeb77425b2894
2022-09-06 13:20:49 -05:00
- name: Check
run: |
for target in ${{ env.targets }}; do
cargo check --target=$target --all-targets
done
for target in ${{ env.targets_ide }}; do
cargo check -p ide --target=$target --all-targets
done
2020-07-14 04:01:18 -05:00
2020-02-26 13:05:27 -06:00
typescript:
needs: changes
2022-04-13 17:42:51 -05:00
if: github.repository == 'rust-lang/rust-analyzer'
2019-11-18 02:13:31 -06:00
name: TypeScript
2020-05-23 08:39:30 -05:00
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
2020-05-23 08:39:30 -05:00
runs-on: ${{ matrix.os }}
2020-07-14 04:01:18 -05:00
2019-11-16 16:26:54 -06:00
steps:
2022-09-06 13:20:49 -05:00
- name: Checkout repository
uses: actions/checkout@v3
if: needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
- name: Install Nodejs
2022-10-18 01:12:49 -05:00
uses: actions/setup-node@v3
2022-09-06 13:20:49 -05:00
with:
2022-10-18 01:12:49 -05:00
node-version: 16
if: needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
- name: Install xvfb
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
run: sudo apt-get install -y xvfb
- run: npm ci
working-directory: ./editors/code
if: needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
# - run: npm audit || { sleep 10 && npm audit; } || { sleep 30 && npm audit; }
# if: runner.os == 'Linux'
# working-directory: ./editors/code
# If this steps fails, your code's type integrity might be wrong at some places at TypeScript level.
- run: npm run typecheck
working-directory: ./editors/code
if: needs.changes.outputs.typescript == 'true'
# You may fix the code automatically by running `npm run lint:fix` if this steps fails.
2022-09-06 13:20:49 -05:00
- run: npm run lint
working-directory: ./editors/code
if: needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
# To fix this steps, please run `npm run format`.
- run: npm run format:check
working-directory: ./editors/code
if: needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
- name: Run VS Code tests (Linux)
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
env:
VSCODE_CLI: 1
run: xvfb-run npm test
working-directory: ./editors/code
- name: Run VS Code tests (Windows)
if: matrix.os == 'windows-latest' && needs.changes.outputs.typescript == 'true'
2022-09-06 13:20:49 -05:00
env:
VSCODE_CLI: 1
run: npm test
working-directory: ./editors/code
- run: npm run package --scripts-prepend-node-path
working-directory: ./editors/code
if: needs.changes.outputs.typescript == 'true'
2022-04-13 09:13:36 -05:00
2024-02-02 04:32:20 -06:00
typo-check:
name: Typo Check
2024-02-01 07:07:50 -06:00
runs-on: ubuntu-latest
timeout-minutes: 10
env:
FORCE_COLOR: 1
2024-02-02 04:32:20 -06:00
TYPOS_VERSION: v1.18.0
2024-02-01 07:07:50 -06:00
steps:
2024-02-02 04:32:20 -06:00
- name: download typos
run: curl -LsSf https://github.com/crate-ci/typos/releases/download/$TYPOS_VERSION/typos-$TYPOS_VERSION-x86_64-unknown-linux-musl.tar.gz | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
2024-02-01 07:07:50 -06:00
2024-02-02 04:32:20 -06:00
- name: check for typos
2024-02-01 07:07:50 -06:00
run: typos
2022-04-13 09:13:36 -05:00
end-success:
name: bors build finished
if: github.event.pusher.name == 'bors' && success()
runs-on: ubuntu-latest
2024-02-02 04:32:20 -06:00
needs: [rust, rust-cross, typescript, typo-check]
2022-04-13 09:13:36 -05:00
steps:
- name: Mark the job as successful
run: exit 0
end-failure:
name: bors build finished
if: github.event.pusher.name == 'bors' && !success()
2022-04-13 09:13:36 -05:00
runs-on: ubuntu-latest
2024-02-02 04:32:20 -06:00
needs: [rust, rust-cross, typescript, typo-check]
2022-04-13 09:13:36 -05:00
steps:
- name: Mark the job as a failure
run: exit 1