-
Notifications
You must be signed in to change notification settings - Fork 26
70 lines (67 loc) · 1.94 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
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@v2
with:
ref: master
fetch-depth: 0
path: eg
- uses: actions/checkout@v2
with:
repository: launchableinc/cli
ref: main
path: cli
fetch-depth: 0
- uses: actions/checkout@v2
with:
repository: golang/go
ref: go1.18.10
path: golang
- uses: actions/setup-python@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel setuptools_scm
pip install launchable
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install dependencies
run: |
go install github.com/jstemmer/go-junit-report@latest
- run: "launchable verify"
- run: "ls -a ."
- run: "ls -a .."
- name: Record commits and build
run: | # care for working-directory path
launchable record build --source main=./eg --source cli=./cli --source go=./golang --name $GITHUB_RUN_ID
- name: Test
run: |
cd eg/go
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()