-
Notifications
You must be signed in to change notification settings - Fork 26
71 lines (68 loc) · 2.49 KB
/
go.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
65
66
67
68
69
70
71
name: Go
on:
push:
branches: [master]
paths:
- "go/**"
- ".github/workflows/go.yml"
pull_request:
paths:
- "go/**"
- ".github/workflows/go.yml"
env:
LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_GO }}
LAUNCHABLE_DEBUG: 1
LAUNCHABLE_REPORT_ERROR: 1
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
ref: master
fetch-depth: 0
path: servicehub
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
repository: launchableinc/cli
ref: main
path: taf-utilities
fetch-depth: 0
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
repository: golang/go
ref: go1.18.10
path: digital-workshop
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Set up
run: |
sudo apt-get update && sudo apt-get install -y curl
sudo apt-get update && sudo apt-get install -y wget
sudo apt install -y default-jre
sudo apt install -y default-jdk
java --version
python -m pip install --upgrade pip
python3 -m pip install requests
python -m pip install launchable
- name: Session
run: |
launchable verify
pwd
ls -la
#launchable record build --name $GITHUB__RUN_ID --source main=servicehub,--source app=digital-workshop,--source service=digital-workshop-service
#launchable record build --name $GITHUB__RUN_ID --source main=./servicehub --source app=./digital-workshop
#launchable record build --name $GITHUB_RUN_ID --source main=./servicehub --source app=./digital-workshop --source service=./digital-workshop-service
launchable record build --source src=./servicehub --name $GITHUB_RUN_ID
#launchable record build --name $GITHUB_RUN_ID --source src=.
- name: Test
run: |
cd servicehub/go
launchable record session --build $GITHUB_RUN_ID
go test -list="Test|Example" ./... | launchable subset --confidence 80% go-test > launchable-subset.txt
go test $(cat launchable-subset.txt) ./... -v 2>&1 | go-junit-report -set-exit-code > report.xml
launchable record tests go-test report.xml
- name: Record
run: launchable record tests go-test report.xml
if: always()