Skip to content

Commit d90ee58

Browse files
committed
allow manual dispatch on any fork
1 parent a9ef9f5 commit d90ee58

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/weekly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
Tracer-Weekly:
11-
# if: github.repository == 'accel-sim/accel-sim-framework'
11+
if: ${{ github.repository == 'accel-sim/accel-sim-framework' || github.event_name == 'workflow_dispatch' }}
1212
runs-on: tgrogers-gpu01
1313
defaults:
1414
run:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Environment
2121
run: |
2222
rm -rf env-setup
23-
git clone [email protected]:purdue-aalp/env-setup.git
23+
git clone --quiet [email protected]:purdue-aalp/env-setup.git
2424
cd env-setup
2525
git checkout cluster-ubuntu
2626
- name: Build Tracer
@@ -34,8 +34,8 @@ jobs:
3434
source ./env-setup/12.8_env_setup.sh
3535
export PATH=/home/tgrogers-raid/a/common/python2:$PATH
3636
rm -rf ./gpu-app-collection/
37-
git clone [email protected]:accel-sim/gpu-app-collection.git
38-
git submodule update --init -- ./gpu-app-collection/src/cuda/cuda-samples
37+
git clone --quiet [email protected]:accel-sim/gpu-app-collection.git
38+
git -C ./gpu-app-collection/ submodule update --init -- ./src/cuda/cuda-samples
3939
source ./gpu-app-collection/src/setup_environment
4040
ln -s /home/tgrogers-raid/a/common/data_dirs ./gpu-app-collection/
4141
make -j8 -C ./gpu-app-collection/src rodinia-3.1
@@ -56,7 +56,7 @@ jobs:
5656
# ./util/tracer_nvbit/run_hw_trace.py -B rodinia-3.1,GPU_Microbenchmark,parboil,polybench,cutlass_5_trace,Deepbench_nvidia_tencore,Deepbench_nvidia_normal -D 7
5757
SASS-Weekly:
5858
needs: [Tracer-Weekly]
59-
if: github.repository == 'accel-sim/accel-sim-framework'
59+
if: ${{ github.repository == 'accel-sim/accel-sim-framework' || github.event_name == 'workflow_dispatch' }}
6060
runs-on: tgrogers-raid
6161
defaults:
6262
run:
@@ -68,7 +68,7 @@ jobs:
6868
- name: Setup Environment
6969
run: |
7070
rm -rf env-setup
71-
git clone [email protected]:purdue-aalp/env-setup.git
71+
git clone --quiet [email protected]:purdue-aalp/env-setup.git
7272
cd env-setup
7373
git checkout cluster-ubuntu
7474
- name: Build Accel-Sim

0 commit comments

Comments
 (0)