diff --git a/.github/workflows/ci_centos7.yml b/.github/workflows/ci_centos7.yml index 485f96fd3..8851ed3d3 100644 --- a/.github/workflows/ci_centos7.yml +++ b/.github/workflows/ci_centos7.yml @@ -57,6 +57,10 @@ jobs: # - name: Tests # run: cd $GITHUB_WORKSPACE/metrix-simulator/build-linux && ctest -j2 --output-on-failure - name: Prepare Metrix install + on: + push: + tags: + - '*' id: metrix-install run: | ARCHIVE_NAME="metrix-simulator.zip" @@ -66,6 +70,10 @@ jobs: echo "::set-output name=archive_path::$ARCHIVE_PATH" - name: Upload OR-Tools install artifact + on: + push: + tags: + - '*' uses: actions/upload-artifact@v3 with: name: ${{ steps.metrix-install.outputs.archive_name }} @@ -75,6 +83,10 @@ jobs: name: Publish release assets needs: linux runs-on: ubuntu-latest + on: + push: + tags: + - '*' steps: - name: Download artifacts uses: actions/download-artifact@v3 diff --git a/.github/workflows/ci_ubuntu.yml b/.github/workflows/ci_ubuntu.yml index 64700bc22..05bf9cae4 100644 --- a/.github/workflows/ci_ubuntu.yml +++ b/.github/workflows/ci_ubuntu.yml @@ -49,7 +49,9 @@ jobs: java-version: 11 - name: Install gcovr - run: sudo pip install gcovr + run: | + sudo apt-get update -y + sudo apt-get install -y gcovr - name: Install Sonar wrapper working-directory: ${{ runner.workspace }}