2019-09-19 13:17:53 +03:00
|
|
|
name: Continuous integration
|
|
|
|
|
2020-01-13 15:31:26 +02:00
|
|
|
on: [push, pull_request]
|
2019-09-19 13:17:53 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-01-13 15:31:26 +02:00
|
|
|
test:
|
2019-09-19 13:17:53 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2019-10-16 15:12:53 +03:00
|
|
|
- name: Create npm configuration
|
|
|
|
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
|
|
|
|
env:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2019-09-19 13:17:53 +03:00
|
|
|
|
2019-10-16 15:12:53 +03:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: npm ci
|
2020-03-24 15:26:10 +02:00
|
|
|
- run: npm run lint
|
2019-10-16 15:12:53 +03:00
|
|
|
- run: npm run build
|
|
|
|
- run: npm run test
|
2019-09-19 13:17:53 +03:00
|
|
|
|
2019-10-16 15:12:53 +03:00
|
|
|
install_stable:
|
2020-01-26 18:20:01 +02:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macOS-latest
|
|
|
|
- windows-latest
|
2019-10-16 15:12:53 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-01-26 18:20:01 +02:00
|
|
|
- id: toolchain
|
|
|
|
uses: ./
|
2019-10-16 15:12:53 +03:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
2020-01-26 18:20:01 +02:00
|
|
|
- name: Test toolchain outputs
|
|
|
|
env:
|
|
|
|
RUSTC: ${{ steps.toolchain.outputs.rustc }}
|
|
|
|
RUSTC_HASH: ${{ steps.toolchain.outputs.rustc_hash }}
|
|
|
|
CARGO: ${{ steps.toolchain.outputs.cargo }}
|
|
|
|
RUSTUP: ${{ steps.toolchain.outputs.rustup }}
|
|
|
|
run: |
|
|
|
|
echo $RUSTC
|
|
|
|
echo $RUSTC_HASH
|
|
|
|
echo $CARGO
|
|
|
|
echo $RUSTUP
|
2019-09-19 13:17:53 +03:00
|
|
|
|
2019-10-16 15:12:53 +03:00
|
|
|
install_nightly:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: nightly
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
install_stable_in_docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: ubuntu:latest # Docker image, not the GitHub Actions VM
|
|
|
|
steps:
|
|
|
|
# `rustup` will need `curl` or `wget` later
|
|
|
|
- run: apt-get update && apt-get install -y curl
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
2020-01-13 15:31:26 +02:00
|
|
|
|
|
|
|
install_stable_through_rust_toolchain_file:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: echo "stable" > ./rust-toolchain
|
|
|
|
- uses: ./
|