Skip to content

Commit

Permalink
Major Refactor Moving Dependencies Into Features (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
obelisk authored Jan 18, 2022
1 parent 1ec49a4 commit 5d84f14
Show file tree
Hide file tree
Showing 32 changed files with 1,366 additions and 520 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Check Rustica Compilation of All Features

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

env:
CARGO_TERM_COLOR: always

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

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

ubuntu-build-with-splunk:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --package=rustica --features=splunk

ubuntu-build-with-influx:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --package=rustica --features=influx

ubuntu-build-with-local-db:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --package=rustica --features=local-db
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
/resources/
!/resources/create_certs.sh
!/resources/package.sh
!/resources/rustica_example_local.toml
!/resources/rustica_example_external.toml
/kubernetes
Loading

0 comments on commit 5d84f14

Please sign in to comment.