-
Notifications
You must be signed in to change notification settings - Fork 55
46 lines (41 loc) · 1.03 KB
/
ci-join.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
name: join networks nightly
# Nightly action that tests joining network as a full node.
on:
workflow_dispatch:
inputs:
network:
type: choice
description: Network
options:
- omega
- mainnet
default: "omega"
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: Run join test
run: |
cd scripts/join
sudo go test . -v \
--integration \
--timeout=0 \
--logs_file=docker_logs.txt \
--halo_tag="main" \
--network="${{github.event.inputs.network || 'mainnet'}}"
- name: Upload docker logs
uses: actions/upload-artifact@v4
if: always()
with:
name: docker-logs
path: scripts/join/docker_logs.txt
retention-days: 3