forked from MegaMek/megamek
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (51 loc) · 1.71 KB
/
validate-boards.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
name: Validate Boards
on:
push:
branches: [master]
paths:
# This set of paths is the reasonable set which
# should trigger a validation of the boards in MM.
# If any changes are made to Board that use
# a new class, update these blocks.
- "**.board"
- "megamek/src/megamek/common/Board.java"
- "megamek/src/megamek/common/Building.java"
- "megamek/src/megamek/common/Terrains.java"
- "megamek/src/megamek/utilities/BoardsValidator.java"
pull_request:
branches: [master]
paths:
- "**.board"
- "megamek/src/megamek/common/Board.java"
- "megamek/src/megamek/common/Building.java"
- "megamek/src/megamek/common/Terrains.java"
- "megamek/src/megamek/utilities/BoardsValidator.java"
env:
GRADLE_OPTS: "-Dscan.link.VCS=${{ github.event.pull_request.html_url }}"
jobs:
board_validator:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
java-distribution: [temurin]
java-version: [17]
steps:
- name: "Check out MegaMek"
uses: actions/checkout@v4
with:
path: megamek
- name: Set up ${{ matrix.java-distribution }} JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.java-distribution }}
java-version: ${{ matrix.java-version }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
build-scan-publish: false
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-use-agree: "yes"
- name: Validate Boards
working-directory: megamek
run: ./gradlew boardsValidator