This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
64 lines (62 loc) · 1.88 KB
/
weekly.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
name: Weekly Test
on:
schedule:
# * is a special character in YAML so you have to quote this string
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
- cron: '0 23 * * 0'
jobs:
daily-kafka:
name: System Integration Test for Kafka
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
os: [ubuntu18.04]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare Docker Images
run: |
make sit-prepare-images
- name: Setup KinD Cluster
uses: engineerd/setup-kind@v0.5.0
with:
version: "v0.11.1"
- name: Deploy to KinD
run: |
make sit-deploy
- name: Integration Test
run: |
make sit-test test_mode=kafka
daily-alpha:
name: System Integration Test for v1alpha1
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
os: [ubuntu18.04]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare Docker Images
run: |
make sit-prepare-images
- name: Setup KinD Cluster
uses: engineerd/setup-kind@v0.5.0
with:
version: "v0.11.1"
- name: Deploy to KinD
run: |
make sit-deploy
- name: Integration Test
run: |
make sit-test test_mode=alpha