Add FFI call to fetch mTLS identities and to provision PIV slot #270
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: Feature Compilation Check | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
macos-build-with-all: | |
runs-on: macos-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --package=rustica --features=all | |
ubuntu-build-with-splunk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --package=rustica --features=splunk | |
ubuntu-build-with-influx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --package=rustica --features=influx | |
ubuntu-build-with-local-db: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --package=rustica --features=local-db | |
ubuntu-build-with-amazon-kms: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --package=rustica --features=amazon-kms | |
ubuntu-build-with-all-except-yubikey: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --package=rustica --features="splunk,influx,local-db,amazon-kms" |