Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

APIGOV-00001 - test #127

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions .github/workflows/build-agents.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: Build agents

on:
push:
branches: [main, '*']
# on:
# push:
# branches: [main, '*']

jobs:
testAgents:
uses: ./.github/workflows/run-tests.yml
# jobs:
# testAgents:
# uses: ./.github/workflows/run-tests.yml

buildAgents:
needs: testAgents
env:
GOFLAGS: "-mod=mod"
VERSION: ${{ github.ref_name }}
COMMIT_ID: ${{ github.sha }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# buildAgents:
# needs: testAgents
# env:
# GOFLAGS: "-mod=mod"
# VERSION: ${{ github.ref_name }}
# COMMIT_ID: ${{ github.sha }}
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: 1.21

- name: Build discovery agent
working-directory: .
run: |
make build-discovery
# - name: Build discovery agent
# working-directory: .
# run: |
# make build-discovery

- name: Build traceability agent
working-directory: .
run: |
make build-trace
# - name: Build traceability agent
# working-directory: .
# run: |
# make build-trace
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:

notifyTeamsChannel:
runs-on: ubuntu-latest
needs: [buildDiscoveryAgentDocker, buildTraceabilityAgentDocker]
# needs: [buildDiscoveryAgentDocker, buildTraceabilityAgentDocker]
steps:
- uses: actions/checkout@v4
- name: Notify Teams channel
Expand Down