Add Antlr support in workflows (#6757)

This commit is contained in:
Ayush Shah 2022-08-17 14:37:23 +05:30 committed by GitHub
parent 00ce67c01e
commit e1799e47d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -53,6 +53,12 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install Ubuntu dependencies
run: |
sudo apt-get update
sudo apt-get install -y unixodbc-dev python3-venv librdkafka-dev gcc libsasl2-dev build-essential libssl-dev libffi-dev \
librdkafka-dev unixodbc-dev libevent-dev antlr4
- name: Setup Test Containers Properties
run: echo 'testcontainers.reuse.enable=true' >> $HOME/.testcontainers.properties

View File

@ -33,6 +33,11 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Ubuntu dependencies
run: |
sudo apt-get update
sudo apt-get install -y unixodbc-dev python3-venv librdkafka-dev gcc libsasl2-dev build-essential libssl-dev libffi-dev \
librdkafka-dev unixodbc-dev libevent-dev antlr4
- name: Install Yarn Packages
working-directory: ${{ env.UI_WORKING_DIRECTORY }}
run: yarn install