forked from omni-network/omni
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (35 loc) · 1.01 KB
/
ci-join.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
name: join omega nightly
# Nightly action that tests joining omega as a full node.
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * 1-5" # Weekdays at 1am UTC
permissions:
contents: read
pull-requests: read
jobs:
join:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Build binaries
uses: goreleaser/goreleaser-action@v5
with:
version: 2
args: release -f .goreleaser-snapshot.yaml --snapshot --clean --skip=archive
- name: Build halovisor image
run: scripts/halovisor/build.sh "${GITHUB_SHA::7}"
- name: Run join test
run: |
cd scripts/join
go test . -v --integration --logs_file=docker_logs.txt -timeout 0
- name: Upload docker logs
uses: actions/upload-artifact@v4
if: always()
with:
name: failed-logs
path: scripts/join/docker_logs.txt
retention-days: 3