-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (51 loc) · 1.76 KB
/
build_main.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
#
# Copyright (c) 2018-2023 TNO and Contributors to the GitHub community
#
# This program and the accompanying materials are made available
# under the terms of the MIT License which is available at
# https://opensource.org/licenses/MIT
#
# SPDX-License-Identifier: MIT
#
# This workflow will build MIDS with Maven, and cache/restore any dependencies to improve the workflow execution time.
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven.
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build and Test MIDS (main)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11 for x64
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
cache: maven
- name: Install GraphViz
run: sudo apt-get install -y graphviz
- name: Install mCRL2
run: |
sudo add-apt-repository ppa:mcrl2/release-ppa
sudo apt update
sudo apt-get install -y mcrl2
- name: Build with Maven
run: mvn verify --batch-mode --update-snapshots --fail-at-end --file pom.xml -Dmids.version.qualifier=$(./releng/versionQualifier.sh)
- name: Attach test report
if: success() || failure()
uses: scacap/action-surefire-report@v1
- name: Attach website
uses: actions/upload-artifact@v3
with:
name: MIDS-website
path: releng/nl.tno.mids.releng.website/target/website
retention-days: 5