Intel CI: setvars #28
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: hip | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "22 22 * * 6" | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-hip | |
cancel-in-progress: true | |
jobs: | |
Tests: | |
name: HIP Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dependencies | |
run: | | |
.github/workflows/dependencies/dependencies_hip.sh | |
- name: Tests | |
run: | | |
export PATH=/opt/rocm/bin:$PATH | |
hipcc --version | |
cd Tests/GPU | |
make -j4 USE_HIP=TRUE AMD_ARCH=gfx90a | |