From b1bd977f7be34138d5fa3301da1771bf95aa05d4 Mon Sep 17 00:00:00 2001 From: Andi Date: Sat, 28 Oct 2023 12:50:16 +0200 Subject: [PATCH] Fix GQL release worklflows (#1424) --- .github/workflows/release_centos8.yaml | 6 ++++-- .github/workflows/release_debian10.yaml | 6 ++++-- .github/workflows/release_ubuntu2004.yaml | 4 +++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_centos8.yaml b/.github/workflows/release_centos8.yaml index d1dd2c6d9..c82916df6 100644 --- a/.github/workflows/release_centos8.yaml +++ b/.github/workflows/release_centos8.yaml @@ -209,7 +209,7 @@ jobs: cd build cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. make -j$THREADS - + - name: Create enterprise RPM package run: | # Activate toolchain. @@ -260,7 +260,9 @@ jobs: - name: Run GQL Behave tests run: | - cd tests/gql_behave + cd tests + ./setup.sh /opt/toolchain-v4/activate + cd gql_behave ./continuous_integration - name: Save quality assurance status diff --git a/.github/workflows/release_debian10.yaml b/.github/workflows/release_debian10.yaml index 277d4c55e..b7f4adc7d 100644 --- a/.github/workflows/release_debian10.yaml +++ b/.github/workflows/release_debian10.yaml @@ -259,7 +259,9 @@ jobs: - name: Run GQL Behave tests run: | - cd tests/gql_behave + cd tests + ./setup.sh /opt/toolchain-v4/activate + cd gql_behave ./continuous_integration - name: Save quality assurance status @@ -337,7 +339,7 @@ jobs: source /opt/toolchain-v4/activate # Initialize dependencies. ./init - + # Set default build_type to Release INPUT_BUILD_TYPE=${{ github.event.inputs.build_type }} BUILD_TYPE=${INPUT_BUILD_TYPE:-"Release"} diff --git a/.github/workflows/release_ubuntu2004.yaml b/.github/workflows/release_ubuntu2004.yaml index a2eb97c06..225a4473c 100644 --- a/.github/workflows/release_ubuntu2004.yaml +++ b/.github/workflows/release_ubuntu2004.yaml @@ -259,7 +259,9 @@ jobs: - name: Run GQL Behave tests run: | - cd tests/gql_behave + cd tests + ./setup.sh /opt/toolchain-v4/activate + cd gql_behave ./continuous_integration - name: Save quality assurance status