-
Notifications
You must be signed in to change notification settings - Fork 54
45 lines (35 loc) · 988 Bytes
/
test_xsite.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
name: Hot Rod Rolling Upgrade Tests
on:
workflow_call:
env:
TESTING_LOG_DIR: ${{ github.workspace }}/test/reports
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/dependencies
- name: Install Kind
run: go install sigs.k8s.io/[email protected]
shell: bash
- name: Initialize Kind Clusters
run: |
docker pull quay.io/infinispan/server:latest
./scripts/ci/configure-xsite.sh
- name: Run XSite Tests
run: make xsite-test
env:
RUN_LOCAL_OPERATOR: false
- name: Inspect Cluster
if: failure()
uses: ./.github/actions/inspect
with:
artifactPrefix: "xsite"
- name: Test Logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: xsite-test-logs
path: ${{ env.TESTING_LOG_DIR }}