rust/.github/workflows/ci.yaml

74 lines
1.7 KiB
YAML
Raw Normal View History

2019-11-18 09:13:31 +01:00
name: CI
on:
pull_request:
push:
branches:
- master
- staging
2019-11-18 17:33:55 +01:00
- trying
2019-11-16 23:26:54 +01:00
jobs:
2019-11-18 09:13:31 +01:00
rust:
name: Rust
2019-11-16 23:26:54 +01:00
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
CARGO_INCREMENTAL: 0
2019-12-07 12:46:36 +01:00
RUN_SLOW_TESTS: 1
2019-11-16 23:26:54 +01:00
steps:
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Checkout repository
uses: actions/checkout@v1
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
components: rustfmt, rust-src
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Cargo target cache
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Compile
uses: actions-rs/cargo@v1
with:
command: test
args: --no-run
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Prepare build directory for cache
run: |
2019-12-07 12:46:36 +01:00
find ./target/debug -maxdepth 1 -type f -delete \
&& rm -fr ./target/debug/{deps,.fingerprint}/{*ra_*,*heavy_test*,*gen_lsp*,*thread_worker*} \
&& rm -f ./target/.rustc_info.json \
&& rm ./target/.slow_tests_cookie
2019-11-18 09:13:31 +01:00
type-script:
name: TypeScript
2019-11-16 23:26:54 +01:00
runs-on: ubuntu-latest
env:
CXX: g++-4.9
CC: gcc-4.9
steps:
- name: Checkout repository
uses: actions/checkout@v1
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- name: Install Nodejs
uses: actions/setup-node@v1
with:
node-version: 12.x
2019-11-18 09:13:31 +01:00
2019-11-16 23:26:54 +01:00
- run: npm ci
working-directory: ./editors/code
2019-12-30 11:23:38 +01:00
- run: npm run package --scripts-prepend-node-path
2019-11-16 23:26:54 +01:00
working-directory: ./editors/code