-
Notifications
You must be signed in to change notification settings - Fork 2
61 lines (53 loc) · 1.53 KB
/
build-agents.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
name: Build agents
on:
push:
branches: [main, "*"]
jobs:
testDiscoveryAgent:
uses: ./.github/workflows/run-da-tests.yml
testTraceabilityAgent:
uses: ./.github/workflows/run-ta-tests.yml
buildDiscoveryAgent:
needs: testDiscoveryAgent
env:
GOFLAGS: "-mod=mod"
GOWORK: "off"
defaults:
run:
working-directory: ${{ env.GOPATH }}/discovery
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Build discovery agent
working-directory: discovery
run: |
git fetch --all --tags --quiet
git branch --show-current > commit_id
git tag -l --sort='version:refname' | grep -Eo '[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$' | tail -1 > version
make build
buildTraceabilityAgent:
needs: testTraceabilityAgent
env:
GOFLAGS: "-mod=mod"
GOWORK: "off"
defaults:
run:
working-directory: ${{ env.GOPATH }}/traceability
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Build traceability agent
working-directory: traceability
run: |
git fetch --all --tags --quiet
git branch --show-current > commit_id
git tag -l --sort='version:refname' | grep -Eo '[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$' | tail -1 > version
make build