-
Notifications
You must be signed in to change notification settings - Fork 128
69 lines (54 loc) · 1.81 KB
/
build-and-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
on: [push, pull_request]
name: Build and Test
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
rust-toolchain: [stable]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust-toolchain }}
components: rustfmt
override: true
- name: Install Build Essentials
run: sudo apt-get install build-essential mingw-w64 gcc
- name: Verify versions
run: rustc --version && rustup --version && cargo --version
- name: Cache build artifacts
id: cache-cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ matrix.rust-toolchain }}
- name: Cache integration artifacts
id: cache-integration
uses: actions/cache@v2
with:
path: |
tests/integration/runner/node_modules
key: ${{ runner.os }}-integration-${{ matrix.rust-toolchain }}
- name: Build RepliByte
run: cargo build --release --all-features
- name: Start Postgres, MySQL, MongoDB and MinIO Containers
run: docker-compose -f "docker-compose-dev.yml" up -d --build
- name: Test RepliByte
env:
AWS_REGION: ${{ secrets.AWS_REGION }}
run: cargo test --all-features
# - name: Bench RepliByte
# run: cargo bench
#- name: Check RepliByte code style
# run: cargo fmt -- --check
- name: Stop Postgres, MySQL, MongoDB and MinIO Containers
if: always()
run: docker-compose -f "docker-compose-dev.yml" down --remove-orphans