Skip to content

add ast extraction and ast node generation (#28) #108

add ast extraction and ast node generation (#28)

add ast extraction and ast node generation (#28) #108

Workflow file for this run

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: Generate JFlex files
run: |
sudo apt-get install -y jflex
./benchmarks/generate_lexers.sh
- name: Generate ANTLR4 files
run: |
sudo apt-get install antlr4
./benchmarks/generate_antlr_classes.sh
- name: Build with Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build