Skip to content

Commit

Permalink
Add Build Job
Browse files Browse the repository at this point in the history
  • Loading branch information
knoppiks committed Jul 10, 2024
1 parent 2c69798 commit b2cc0f9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,31 @@ jobs:

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

build:
runs-on: ubuntu-24.04
strategy:
matrix:
agent:
- clinical-domain-agent
- trust-center-agent
- research-domain-agent
steps:
- uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: 'maven'

- name: Build Dependencies
run: mvn -B install --projects .,api,util,test-util
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Build Agent
run: mvn -B install --projects ${{ matrix.agent }}
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit b2cc0f9

Please sign in to comment.