Temp PR to check if memory leak tests for emit dataframe work #1044
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Bazel Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Search for duplicated error codes | |
run: bash find_duplicate_error_codes.sh | |
- name: Install bazel | |
run: | | |
curl -L -o bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64 | |
chmod +x bazel | |
- name: Install JDK and ZMQ | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y openjdk-11-jdk libzmq3-dev | |
- name: Test | |
run: | | |
export USE_BAZEL_VERSION=6.4.0 | |
bazel test //javacontainer/test/... | |
working-directory: ./exaudfclient/base |