opensuse-15 #106
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: OpenSUSE 15 (GCC, Python) | |
run-name: opensuse-15 | |
on: | |
push: | |
branches: [ amd-mainline, amd-staging, release/** ] | |
paths-ignore: | |
- '*.md' | |
- 'docs/**' | |
- 'source/docs/**' | |
- 'source/python/gui/**' | |
- '.github/workflows/docs.yml' | |
- '.github/workflows/cpack.yml' | |
- '.github/workflows/containers.yml' | |
- '.github/workflows/formatting.yml' | |
- 'docker/**' | |
pull_request: | |
branches: [ amd-mainline, amd-staging, release/** ] | |
paths-ignore: | |
- '*.md' | |
- 'docs/**' | |
- 'source/docs/**' | |
- 'source/python/gui/**' | |
- '.github/workflows/docs.yml' | |
- '.github/workflows/cpack.yml' | |
- '.github/workflows/containers.yml' | |
- '.github/workflows/formatting.yml' | |
- 'docker/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
ROCPROFSYS_CI: ON | |
ROCPROFSYS_TMPDIR: "%env{PWD}%/testing-tmp" | |
jobs: | |
opensuse: | |
runs-on: ubuntu-20.04 | |
container: | |
image: dgaliffiamd/rocprofiler-systems:ci-base-opensuse-${{ matrix.os-release }} | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: ['g++'] | |
os-release: [ '15.5', '15.6' ] | |
build-type: ['Release'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Packages | |
timeout-minutes: 25 | |
uses: nick-fields/retry@v3 | |
with: | |
retry_wait_seconds: 30 | |
timeout_minutes: 25 | |
max_attempts: 5 | |
command: | | |
python3 -m pip install --upgrade pip && | |
python3 -m pip install numpy perfetto dataclasses && | |
for i in 6 7 8 9 10 11; do /opt/conda/envs/py3.${i}/bin/python -m pip install numpy perfetto dataclasses; done | |
- name: Configure Env | |
run: | |
echo "CC=$(echo '${{ matrix.compiler }}' | sed 's/+/c/g')" >> $GITHUB_ENV && | |
echo "CXX=${{ matrix.compiler }}" >> $GITHUB_ENV && | |
echo "/opt/rocprofiler-systems/bin:${HOME}/.local/bin" >> $GITHUB_PATH && | |
echo "LD_LIBRARY_PATH=/opt/rocprofiler-systems/lib:${LD_LIBRARY_PATH}" >> $GITHUB_ENV | |
- name: Configure, Build, and Test | |
timeout-minutes: 115 | |
shell: bash | |
run: | |
git config --global --add safe.directory ${PWD} && | |
cmake --version && | |
python3 ./scripts/run-ci.py -B build | |
--name ${{ github.repository_owner }}-${{ github.ref_name }}-opensuse-${{ matrix.os-release }}-${{ matrix.compiler }}-nompi-python | |
--build-jobs 2 | |
--site GitHub | |
-- | |
-DCMAKE_C_COMPILER=$(echo '${{ matrix.compiler }}' | sed 's/+/c/g') | |
-DCMAKE_CXX_COMPILER=${{ matrix.compiler }} | |
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} | |
-DCMAKE_INSTALL_PREFIX=/opt/rocprofiler-systems | |
-DROCPROFSYS_BUILD_TESTING=ON | |
-DROCPROFSYS_USE_MPI=OFF | |
-DROCPROFSYS_USE_HIP=OFF | |
-DROCPROFSYS_USE_OMPT=OFF | |
-DROCPROFSYS_USE_PYTHON=ON | |
-DROCPROFSYS_INSTALL_PERFETTO_TOOLS=OFF | |
-DROCPROFSYS_USE_MPI_HEADERS=ON | |
-DROCPROFSYS_PYTHON_PREFIX=/opt/conda/envs | |
-DROCPROFSYS_PYTHON_ENVS="py3.6;py3.7;py3.8;py3.9;py3.10;py3.11" | |
-DROCPROFSYS_CI_MPI_RUN_AS_ROOT=ON | |
-DROCPROFSYS_MAX_THREADS=64 | |
-DROCPROFSYS_DISABLE_EXAMPLES="transpose;rccl" | |
-DROCPROFSYS_BUILD_NUMBER=${{ github.run_attempt }} | |
- name: Install | |
timeout-minutes: 10 | |
run: | |
cmake --build build --target install --parallel 2 | |
- name: Test Install | |
timeout-minutes: 10 | |
run: | | |
set -v | |
export ROCPROFSYS_DEBUG=ON | |
which rocprof-sys-avail | |
ldd $(which rocprof-sys-avail) | |
rocprof-sys-avail --help | |
rocprof-sys-avail -a | |
which rocprof-sys-instrument | |
ldd $(which rocprof-sys-instrument) | |
rocprof-sys-instrument --help | |
rocprof-sys-instrument -e -v 1 -o ls.inst --simulate -- ls | |
for i in $(find rocprofsys-ls.inst-output -type f); do echo -e "\n\n --> ${i} \n\n"; cat ${i}; done | |
rocprof-sys-instrument -e -v 1 -o ls.inst -- ls | |
rocprof-sys-run -- ./ls.inst | |
rocprof-sys-instrument -e -v 1 --simulate -- ls | |
for i in $(find rocprofsys-ls-output -type f); do echo -e "\n\n --> ${i} \n\n"; cat ${i}; done | |
rocprof-sys-instrument -e -v 1 -- ls | |
- name: Test User API | |
timeout-minutes: 10 | |
run: | | |
set -v | |
./scripts/test-find-package.sh --install-dir /opt/rocprofiler-systems | |
- name: CTest Artifacts | |
if: failure() | |
continue-on-error: True | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ctest-${{ github.job }}-${{ strategy.job-index }}-log | |
path: | | |
build/*.log | |
- name: Data Artifacts | |
if: failure() | |
continue-on-error: True | |
uses: actions/upload-artifact@v3 | |
with: | |
name: data-${{ github.job }}-${{ strategy.job-index }}-files | |
path: | | |
build/rocprofsys-tests-config/*.cfg | |
build/rocprofsys-tests-output/**/*.txt | |
build/rocprofsys-tests-output/**/*-instr*.json | |
- name: Kill Perfetto | |
if: success() || failure() | |
continue-on-error: True | |
run: | | |
set +e | |
RUNNING_PROCS=$(pgrep trace_processor_shell) | |
if [ -n "${RUNNING_PROCS}" ]; then kill -s 9 ${RUNNING_PROCS}; fi |