From 8f570d6b629eb7cbe497a479425ab1c37b2bc5f9 Mon Sep 17 00:00:00 2001 From: Thomas Ubensee <34603111+tomuben@users.noreply.github.com> Date: Tue, 15 Oct 2024 06:53:12 -0300 Subject: [PATCH] Added Python env variables in check_bazel_tests.yml --- .github/workflows/check_bazel_tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check_bazel_tests.yml b/.github/workflows/check_bazel_tests.yml index 24069b37..fa15caba 100644 --- a/.github/workflows/check_bazel_tests.yml +++ b/.github/workflows/check_bazel_tests.yml @@ -10,7 +10,7 @@ env: USE_BAZEL_VERSION: 7.2.1 jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Search for duplicated error codes @@ -23,11 +23,14 @@ jobs: - name: Install JDK and ZMQ run: | sudo apt-get update - sudo apt-get install -y openjdk-11-jdk libzmq3-dev + sudo apt-get install -y openjdk-11-jdk libzmq3-dev python3 - name: Build run: | bazel build --lockfile_mode=off --config no-tty -c dbg --config python --config fast-binary --verbose_failures working-directory: ./exaudfclient/ + env: + - PYTHON3_PREFIX: /usr + - PYTHON3_VERSION: python3.10 tests: runs-on: ubuntu-latest