-
Notifications
You must be signed in to change notification settings - Fork 77
51 lines (43 loc) · 1.57 KB
/
integration.yaml
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
name: Ractor Cluster integration tests
on:
push:
branches:
- main
paths:
- 'ractor_cluster*/**'
pull_request:
types: [opened, reopened, synchronize]
paths:
- 'ractor_cluster*/**'
jobs:
test:
name: Test ractor_cluster with Docker based networked images
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
toolchain: [stable]
os: [ubuntu]
features: [blanket_serde, cluster]
steps:
- uses: actions/checkout@main
- name: Build the docker image
working-directory: .
run: |
FEATURES=${{matrix.features}} docker compose build
- name: Authentication Handshake
working-directory: .
run: |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/auth-handshake.env up --exit-code-from node-b
- name: Process Groups
working-directory: .
run: |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/pg-groups.env up --exit-code-from node-b
- name: Encrypted communications
working-directory: .
run: |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/encryption.env up --exit-code-from node-b
- name: Transitive connections
working-directory: .
run: |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/dist-connect.env up --exit-code-from node-c