Skip to content

Commit

Permalink
chore: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhuofu committed Jan 15, 2025
1 parent 7feca72 commit 9e3c9b9
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/gpu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
fail-fast: false

steps:
- name: Checkout Git Repository
- name: checkout git repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Free additional space on runner
- name: free additional space on runner
run: ./.github/workflows/helpers/free_space_on_runner.sh

- name: Install nix
- name: install nix
uses: cachix/install-nix-action@v25
with:
github_access_token: '${{ secrets.GITHUB_TOKEN }}'
Expand All @@ -40,8 +40,16 @@ jobs:
with:
arguments: "--accept-flake-config --impure"

- name: ccache
uses: hendrikmuhs/[email protected]

- name: regenerate all dtgen files
run: |
proj dtgen --force
- name: run cmake
run: rm -rf build && mkdir build && cd build && cmake -DFF_CUDA_ARCH=60 -DCMAKE_CUDA_ARCHITECTURES=60 $CMAKE_FLAGS ..
run: |
proj cmake
- name: build test binaries
run: cd build && make -j kernels-tests
Expand Down

0 comments on commit 9e3c9b9

Please sign in to comment.