forked from vadyushkins/kotgll
-
Notifications
You must be signed in to change notification settings - Fork 11
36 lines (27 loc) · 779 Bytes
/
build.yml
File metadata and controls
36 lines (27 loc) · 779 Bytes
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
name: Build project
#workflow_dispatch -- for manual trigger
on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Install JFlex
run: |
sudo apt-get install -y jflex
- name: Install ANTLR4 files
run: |
sudo apt-get install antlr4
- name: Generate files
run: |
./benchmarks/scripts/generate_all.sh
- name: Build with Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build