Add vendored
feature to prism-sys
crate
#722
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Rust Bindings | |
on: | |
push: | |
paths: | |
- ".github/workflows/rust-bindings.yml" | |
- "include/" | |
- "src/" | |
- "rust/" | |
- "*akefile*" | |
branches: | |
- main | |
pull_request: | |
env: | |
RUSTFLAGS: "-D warnings" | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: head | |
bundler-cache: true | |
- name: Set up Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "1.71.1" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }} | |
${{ runner.os }}-cargo | |
- name: Run tests | |
run: bundle exec rake cargo:test | |
- name: Run examples | |
run: bundle exec rake cargo:examples | |
lint: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: head | |
bundler-cache: true | |
- name: Set up Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "1.71.1" | |
components: clippy, rustfmt | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo--${{ hashFiles('**/Cargo.toml') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }} | |
${{ runner.os }}-cargo | |
- name: rake cargo:build | |
run: bundle exec rake cargo:build | |
- name: rake cargo:lint | |
run: bundle exec rake cargo:lint | |
sanitize: | |
name: Test with -Zsanitizer=${{ matrix.sanitizer }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sanitizer: [address, leak] | |
crate: [prism-sys, prism] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: head | |
bundler-cache: true | |
- name: rake cargo:build | |
run: bundle exec rake cargo:build | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
target: "x86_64-unknown-linux-gnu" | |
components: "rust-src" | |
- name: Test with sanitizer | |
run: bundle exec rake cargo:sanitize:${{ matrix.sanitizer }} |