Skip to content

Commit

Permalink
AmazonKMS Support (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
obelisk authored Jan 22, 2022
1 parent 5d84f14 commit 777773a
Show file tree
Hide file tree
Showing 22 changed files with 812 additions and 158 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Check Rustica Compilation of All Features
name: Feature Compilation Check

on:
push:
Expand All @@ -10,13 +10,13 @@ env:
CARGO_TERM_COLOR: always

jobs:
macos-build-with-yubikey:
macos-build-with-all:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --package=rustica --features="yubikey-support"
run: cargo build --package=rustica --features=all

ubuntu-build-with-splunk:
runs-on: ubuntu-latest
Expand All @@ -41,3 +41,19 @@ jobs:
- uses: actions/checkout@v2
- name: Build
run: cargo build --package=rustica --features=local-db

ubuntu-build-with-amazon-kms:
runs-on: ubuntu-latest

steps:
- 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:
- uses: actions/checkout@v2
- name: Build
run: cargo build --package=rustica --features="splunk,influx,local-db,amazon-kms"
Loading

0 comments on commit 777773a

Please sign in to comment.