SOFTWARE-5721: Include cpio from the stage 1 build artifacts into the final tarball #50
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: Test tarball builds | |
on: [push, pull_request] | |
jobs: | |
test-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
OS_TYPE: ["centos"] | |
OS_VERSION: [7, 8] | |
OSG_VERSION: [3.6] | |
env: | |
OS_TYPE: ${{ matrix.OS_TYPE }} | |
OS_VERSION: ${{ matrix.OS_VERSION }} | |
OSG_VERSION: ${{ matrix.OSG_VERSION }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Test Script | |
run: | |
sh tests/setup_tests.sh ${OS_VERSION} |