add site (#67) #150
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: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
services: | |
cassandra: | |
image: cassandra | |
ports: | |
- 9042:9042 | |
# options: --health-cmd "cqlsh --debug" --health-interval 5s --health-retries 100 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Cache cargo registry | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo- | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
- name: Restore mtime | |
run: python ./git-restore-mtime.py | |
- name: protobuf install | |
run: | | |
sudo apt update -y | |
sudo apt-get install -y protobuf-compiler libprotobuf-dev | |
- name: Build | |
run: cargo build | |
- name: Prepare / Save test private key file from secrets | |
run: envsubst < private.key.envsubst.txt > private.key | |
env: | |
TEST_PRIVATE_SERVER_KEY: ${{ secrets.TEST_PRIVATE_SERVER_KEY }} | |
- name: Test / Save test cert file from secrets | |
run: envsubst < server.crt.envsubst.txt > server.crt | |
env: | |
TEST_SERVER_CERT: ${{ secrets.TEST_SERVER_CERT }} | |
- name: Test / Run lib unit tests | |
run: cargo test --lib -- --nocapture | |
- run: ls | |
- name: Test / Run new integration test (Go paho client) | |
working-directory: integration_test | |
run: go test -v |