-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7feca72
commit 9e3c9b9
Showing
1 changed file
with
12 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }}' | ||
|
@@ -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 | ||
|