forked from convox/convox
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1019 Bytes
/
daily_test.yml
File metadata and controls
45 lines (43 loc) · 1019 Bytes
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: daily test
on:
schedule:
- cron: '0 0/24 * * *'
workflow_dispatch:
jobs:
test-clouds:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
provider:
- aws
- azure
- do
- gcp
steps:
- name: checkout
uses: actions/checkout@v3
- name: name
run: echo "RACK_NAME=ci-$(date +"%Y%m%d%H%M%S")" >> $GITHUB_ENV
- name: provider
run: echo "PROVIDER=${{ matrix.provider }}" >> $GITHUB_ENV
- name: secrets
run: ci/secrets.sh
env:
SECRETS: ${{ toJson(secrets) }}
- name: dependencies
run: ci/dependencies.sh
- name: cli
run: ci/cli.sh
- name: install last release
run: ci/install_last_release.sh
- name: wait
run: sleep 300
- name: test
run: ci/test.sh
- name: debug
run: ci/debug.sh
if: always()
- name: uninstall
run: ci/uninstall.sh
if: always()