Skip to content

Commit

Permalink
Add system info in CI workflows run on self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
szadam committed Nov 9, 2023
1 parent d70bae4 commit 4a72df1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,14 @@ jobs:
# This is so that device binaries can find the sycl runtime library
run: cmake --build ${{github.workspace}}/build -j $(nproc)

- name: Information about platform
if: always()
run: |
sycl-ls
lsb_release -a
lspci | grep VGA
clinfo | less
- name: Test adapter specific
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.build_type}} --output-on-failure -L "adapter-specific" --timeout 180
Expand Down Expand Up @@ -261,6 +269,14 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build -j $(nproc)

- name: Information about platform
if: always()
run: |
sycl-ls
lsb_release -a
lspci | grep VGA
clinfo | less
- name: Test codegen example
working-directory: ${{github.workspace}}/build
run: bin/codegen
Expand Down

0 comments on commit 4a72df1

Please sign in to comment.