Skip to content

Commit 176bf18

Browse files
committed
fix: change working directory
1 parent 374e060 commit 176bf18

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/self-hosted.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Run unit-tests
64-
working-directory: ${{ env.build_dir }}/scripts
64+
working-directory: ${{ env.build_dir }}
6565
run: chmod +x scripts/run_tests_fallback.sh && ./scripts/run_tests_fallback.sh
6666

6767
- name: Run regression-tests

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,14 @@ jobs:
2929
- uses: actions/checkout@v4
3030
with:
3131
submodules: true
32+
3233
- uses: actions/setup-python@v5
3334
with:
3435
python-version: '3.12'
3536

3637
- name: Install CUDA
38+
env:
39+
cuda: ${{ matrix.cuda }}
3740
run: |
3841
source ./scripts/install_cuda_ubuntu.sh
3942
if [[ $? -eq 0 ]]; then

0 commit comments

Comments
 (0)