-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (41 loc) · 1.29 KB
/
live-test.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
47
48
49
50
51
52
53
name: Live test
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
paths:
- ".github/workflows/live-test.yaml"
jobs:
test-ipv4:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22.1
- name: Run test client (old ports)
working-directory: client
run: go run client.go -address coap.nordicsemi.academy -udpPort 5688 -dTLSPort 5689
- name: Run test client (new ports)
working-directory: client
run: go run client.go -address coap.nordicsemi.academy -udpPort 5683 -dTLSPort 5684
test-ipv6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22.1
- name: Set up WARP
uses: fscarmen/[email protected]
- name: Run test client (old ports)
working-directory: client
run: go run client.go -address coap.nordicsemi.academy -udp6 -udpPort 5688 -dTLSPort 5689
- name: Run test client (new ports)
# Skip until deployed
if: false
working-directory: client
run: go run client.go -address coap.nordicsemi.academy -udpPort 5683 -dTLSPort 5684