swc/.github/workflows/cargo.yml

171 lines
4.1 KiB
YAML
Raw Normal View History

name: Cargo
on: [push, pull_request]
2020-02-18 05:36:56 +03:00
#on:
# push:
# # Ignore commits created by bors
# branches-ignore:
# - 'staging'
# - 'trying'
# pull_request:
# branches-ignore:
# - 'staging'
# - 'trying'
env:
CARGO_INCREMENTAL: 0
RUST_LOG: "debug"
jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install rustfmt
run: rustup component add rustfmt
- name: Run cargo fmt
run: cargo fmt --all -- --check
check:
name: Check
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-10.15
- windows-2019
steps:
- uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/
target
key: ${{ runner.os }}-cargo-v2
# Ensure that all components are compilable.
- name: Run cargo check for all targets
run: cargo check --color always --all --all-targets
test:
name: Test
needs:
- check
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-10.15
- windows-2019
crate:
- ast_node
- enum_kind
- from_variant
- jsdoc
- spack
- string_enum
- swc
- swc_atoms
- swc_bundler
- swc_common
- swc_ecma_ast
- swc_ecma_codegen
- swc_ecma_codegen_macros
- swc_ecma_dep_graph
- swc_ecma_ext_transforms
- swc_ecma_loader
- swc_ecma_parser
- swc_ecma_preset_env
- swc_ecma_transforms
- swc_ecma_transforms_base
- swc_ecma_transforms_compat
- swc_ecma_transforms_macros
- swc_ecma_transforms_module
- swc_ecma_transforms_optimization
- swc_ecma_transforms_proposal
- swc_ecma_transforms_react
- swc_ecma_transforms_testing
- swc_ecma_transforms_typescript
- swc_ecma_utils
- swc_ecma_visit
- swc_ecmascript
- swc_eq_ignore_macros
- swc_macros_common
- swc_visit
- swc_visit_macros
- testing
- testing_macros
exclude:
- os: windows-2019
crate: spack
steps:
- name: Handle line endings
shell: bash
if: runner.os == 'Windows'
run: |
git config --system core.autocrlf false
git config --system core.eol lf
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
2020-08-30 09:29:42 +03:00
with:
node-version: 14
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Install node dependencies
shell: bash
run: |
# This does not have any effect on windows.
npm config set prefix $HOME/npm
npm i browserslist regenerator-runtime sourcemap-validator progress
npm i -g jest
echo $HOME
echo $HOME/npm/bin >> $GITHUB_PATH
- name: Configure path (windows)
shell: bash
if: runner.os == 'Windows'
run: |
echo 'C:\\npm\\prefix' >> $GITHUB_PATH
- name: Verify dependencies
shell: bash
run: |
jest -v
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/
target
key: ${{ runner.os }}-cargo-v2
- name: Run cargo test
run: |
jest -v
cargo test --color always -p ${{ matrix.crate }}
# We use travis for rustdocs
# deploy-docs:
# runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/master'
# needs:
# - test
# steps:
# - uses: actions/checkout@v2
# - name: Create rustdoc
# run: cargo doc