-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 967 Bytes
/
maven.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
name: Java CI with Maven
on:
push:
branches: [ "GPMS_2_0" ]
pull_request:
branches: [ "GPMS_2_0" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install protoc
run: sudo apt-get install -qq protobuf-compiler
- name: Create protoc-3 symlink
run: sudo ln -s /usr/bin/protoc /usr/bin/protoc-3
- name: Setup mvn cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mgx-cache
- name: Build 'utilities'
run: |
git clone -b utilities_2_0 https://github.com/MGX-metagenomics/utilities.git
cd utilities
mvn clean install -DskipTests=true
cd ..
rm -rf utilities
- name: Build with Maven
run: mvn -B package --file pom.xml