Skip to content

Commit

Permalink
Test centos7_31
Browse files Browse the repository at this point in the history
  • Loading branch information
ARnDOSrte committed Sep 29, 2023
1 parent 261c13e commit bf9acf8
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/ci_centos7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,24 @@ jobs:
- name: Build
run: cmake --build $GITHUB_WORKSPACE/metrix-simulator/build-linux --target install --parallel 2

- name: Tests
run: cd $GITHUB_WORKSPACE/metrix-simulator/build-linux && ctest -j2 --output-on-failure

# - name: Tests
# run: cd $GITHUB_WORKSPACE/metrix-simulator/build-linux && ctest -j2 --output-on-failure
- name: Prepare Metrix install
id: metrix-install
run: |
cd build
ARCHIVE_NAME="metrix-simulator.zip"
ARCHIVE_PATH="$PWD/${ARCHIVE_NAME}"
zip -r $ARCHIVE_PATH ./build-linux/metrix-simulator
echo "::set-output name=archive_name::$ARCHIVE_NAME"
echo "::set-output name=archive_path::$ARCHIVE_PATH"
- name: Upload OR-Tools install artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.metrix-install.outputs.archive_name }}
path: ${{ steps.metrix-install.outputs.archive_path }}

publish_asset:
name: Publish release assets
needs: linux
Expand Down

0 comments on commit bf9acf8

Please sign in to comment.