-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 1.13 KB
/
ci.yaml
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
name: CI
on: [ push, pull_request ]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build Galaxy Common
run: mvn --batch-mode --update-snapshots install
working-directory: galaxy-common/
- name: Build Galaxy Web
run: mvn --batch-mode --update-snapshots install
working-directory: galaxy-web/
- name: Build Galaxy Authentication
run: mvn --batch-mode --update-snapshots install
working-directory: galaxy-authentication/
- name: Build Galaxy OAuth2 Common
run: mvn --batch-mode --update-snapshots install
working-directory: galaxy-oauth2-common/
- name: Build Galaxy OAuth2 Server
run: mvn --batch-mode --update-snapshots install
working-directory: galaxy-oauth2-server/
- name: Build Galaxy OAuth2 Client
run: mvn --batch-mode --update-snapshots install
working-directory: galaxy-oauth2-client/