rusqlite/.github/workflows/main.yml

43 lines
974 B
YAML
Raw Normal View History

2020-02-19 02:49:43 +08:00
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
platform:
# - { target: x86_64-pc-windows-gnu, os: windows-latest }
- { target: x86_64-pc-windows-msvc, os: windows-latest }
# - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
runs-on: ${{ matrix.platform.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
2020-02-19 02:49:43 +08:00
with:
target: ${{ matrix.platform.target }}
default: true
profile: minimal
toolchain: stable
override: true
- run: cargo build --features bundled
- run: cargo test --features bundled
2020-02-19 04:17:37 +08:00
- name: Static build
if: matrix.os == 'windows-latest'
shell: cmd
run: |
set RUSTFLAGS=-Ctarget-feature=+crt-static
cargo build --features bundled