-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (44 loc) · 1.21 KB
/
build.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
name: Build
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
JAVA_OPTS: "-Xmx4G"
SBT_OPTS: "-Dsbt.ci=true"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Setup sbt
uses: sbt/setup-sbt@v1
- name: Build Java Maven
working-directory: java/maven
run: ./mvnw --batch-mode -Dstyle.color=always --no-transfer-progress test-compile
- name: Build Java Gradle
working-directory: java/gradle
run: ./gradlew gatlingClasses
- name: Build Kotlin Maven
working-directory: kotlin/maven
run: ./mvnw --batch-mode -Dstyle.color=always --no-transfer-progress test-compile
- name: Build Kotlin Gradle
working-directory: kotlin/gradle
run: ./gradlew gatlingClasses
- name: Build Scala sbt
working-directory: scala/sbt
run: sbt Gatling/compile