rhai/.github/workflows/build.yml

196 lines
6.7 KiB
YAML
Raw Normal View History

name: Build
on:
push:
branches:
2022-01-27 09:57:47 +01:00
- main
2021-08-21 04:09:32 +02:00
- master
pull_request: {}
env:
2022-08-29 08:44:56 +02:00
RUST_MSRV: 1.61.0
jobs:
msrv:
runs-on: ubuntu-latest
steps:
2023-09-04 14:24:11 +02:00
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db/
target
key: "${{ runner.os }}-cargo-build-msrv-${{ hashFiles('**/Cargo.lock') }}"
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ env.RUST_MSRV }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
2022-10-12 08:49:05 +02:00
# typical build with various feature combinations
build:
name: Build
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ubuntu-latest]
flags:
- ""
2023-03-02 06:16:15 +01:00
- "--features testing-environ,debugging"
- "--features testing-environ,metadata,serde,internals"
- "--features testing-environ,unchecked,serde,metadata,internals,debugging"
- "--features testing-environ,sync,serde,metadata,internals,debugging"
- "--features testing-environ,no_position,serde,metadata,internals,debugging"
- "--features testing-environ,no_optimize,serde,metadata,internals,debugging"
- "--features testing-environ,no_float,serde,metadata,internals,debugging"
- "--features testing-environ,f32_float,serde,metadata,internals,debugging"
- "--features testing-environ,decimal,serde,metadata,internals,debugging"
- "--features testing-environ,no_custom_syntax,serde,metadata,internals,debugging"
- "--features testing-environ,no_float,decimal"
- "--tests --features testing-environ,only_i32,serde,metadata,internals,debugging"
- "--features testing-environ,only_i64,serde,metadata,internals,debugging"
- "--features testing-environ,no_index,serde,metadata,internals,debugging"
- "--features testing-environ,no_object,serde,metadata,internals,debugging"
- "--features testing-environ,no_function,serde,metadata,internals,debugging"
- "--features testing-environ,no_module,serde,metadata,internals,debugging"
- "--features testing-environ,no_time,serde,metadata,internals,debugging"
- "--features testing-environ,no_closure,serde,metadata,internals,debugging"
- "--features testing-environ,unicode-xid-ident,serde,metadata,internals,debugging"
- "--features testing-environ,sync,no_time,no_function,no_float,no_position,no_optimize,no_module,no_closure,no_custom_syntax,metadata,serde,unchecked,debugging"
- "--features testing-environ,no_time,no_function,no_float,no_position,no_index,no_object,no_optimize,no_module,no_closure,no_custom_syntax,unchecked"
toolchain: [stable]
experimental: [false]
include:
2022-09-10 08:09:55 +02:00
# smoketests for different toolchains
- {toolchain: stable, os: windows-latest, experimental: false, flags: ""}
- {toolchain: stable, os: macos-latest, experimental: false, flags: ""}
2022-11-04 15:21:21 +01:00
- {toolchain: beta, os: ubuntu-latest, experimental: false, flags: ""}
- {toolchain: nightly, os: ubuntu-latest, experimental: true, flags: ""}
fail-fast: false
steps:
- name: Checkout
2023-09-04 14:24:11 +02:00
uses: actions/checkout@v4
- name: Setup Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{matrix.toolchain}}
override: true
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
2020-09-08 23:24:08 +02:00
args: ${{matrix.flags}}
2022-10-12 08:49:05 +02:00
# no-std builds are a bit more extensive to test
no_std_build:
name: NoStdBuild
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
include:
2022-01-22 10:27:18 +01:00
- {os: ubuntu-latest, flags: "--profile unix", experimental: false}
- {os: windows-latest, flags: "--profile windows", experimental: true}
#- {os: macos-latest, flags: "--profile macos", experimental: false}
steps:
- name: Checkout
2023-09-04 14:24:11 +02:00
uses: actions/checkout@v4
- name: Setup Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build Project
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path=no_std/no_std_test/Cargo.toml ${{matrix.flags}}
2022-10-12 08:49:05 +02:00
2022-10-11 10:29:48 +02:00
wasm:
name: Check Wasm build
runs-on: ubuntu-latest
strategy:
matrix:
flags:
2022-10-12 08:49:05 +02:00
- "--target wasm32-wasi"
# These fail currently, future PR should fix them
2022-10-12 08:49:05 +02:00
# - "--target wasm32-unknown-unknown"
# - "--target wasm32-unknown-unknown --features wasm-bindgen"
- "--target wasm32-unknown-unknown --no-default-features"
- "--target wasm32-unknown-unknown --no-default-features --features wasm-bindgen"
2022-10-11 10:29:48 +02:00
fail-fast: false
steps:
- name: Checkout
2023-09-04 14:24:11 +02:00
uses: actions/checkout@v4
2022-10-12 09:14:10 +02:00
- name: Setup Generic Wasm Toolchain
2022-10-11 10:29:48 +02:00
uses: actions-rs/toolchain@v1
with:
2022-10-12 09:14:10 +02:00
toolchain: stable
2022-10-11 10:29:48 +02:00
override: true
target: wasm32-unknown-unknown
2022-10-12 08:49:05 +02:00
- name: Setup Wasi Toolchain
uses: actions-rs/toolchain@v1
with:
2022-10-12 09:14:10 +02:00
toolchain: stable
2022-10-12 08:49:05 +02:00
override: true
target: wasm32-wasi
2022-10-11 10:29:48 +02:00
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
2022-10-12 08:49:05 +02:00
args: ${{matrix.flags}}
2022-10-11 10:29:48 +02:00
2020-09-20 19:47:31 +02:00
rustfmt:
name: Check Formatting
runs-on: windows-latest
continue-on-error: true
steps:
- name: Checkout
2023-09-04 14:24:11 +02:00
uses: actions/checkout@v4
2020-09-20 19:47:31 +02:00
- name: Setup Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
2020-09-20 20:11:15 +02:00
- name: Run Clippy
2020-09-20 19:47:31 +02:00
uses: actions-rs/cargo@v1
with:
command: clippy
2020-09-20 20:11:15 +02:00
args: --all -- -Aclippy::all -Dclippy::perf
2022-10-12 08:49:05 +02:00
2020-08-01 18:52:26 +02:00
codegen_build:
name: Codegen Build
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
include:
2022-12-16 02:59:56 +01:00
- {toolchain: stable, os: ubuntu-latest, experimental: false, flags: "--features metadata"}
- {toolchain: stable, os: windows-latest, experimental: false, flags: "--features metadata"}
2020-08-01 18:52:26 +02:00
steps:
- name: Checkout
2023-09-04 14:24:11 +02:00
uses: actions/checkout@v4
2020-08-01 18:52:26 +02:00
- name: Setup Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{matrix.toolchain}}
override: true
- name: Build Project
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=codegen/Cargo.toml ${{matrix.flags}}