Skip to content

Commit d431226

Browse files
committed
[CI] Clean up build-and-run workflow by removing redundant set -x and unused PR review trigger
1 parent b6da097 commit d431226

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

.github/workflows/build-and-run.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
pull_request:
77
branches: [ main ]
88
types: [opened, synchronize, reopened]
9-
pull_request_review:
10-
types: [submitted, edited]
11-
129

1310
jobs:
1411
build-and-run:
@@ -42,7 +39,6 @@ jobs:
4239
python --version
4340
- name: Build TornadoVM
4441
run: |
45-
set -x
4642
cd GPULlama3.java/external/tornadovm
4743
source venv/bin/activate
4844
echo "=== Building TornadoVM ==="
@@ -70,7 +66,6 @@ jobs:
7066
tornado --devices
7167
- name: Build GPULlama3
7268
run: |
73-
set -x
7469
cd ${{ github.workspace }}
7570
echo "Using TORNADO_SDK=$TORNADO_SDK"
7671
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
@@ -79,7 +74,6 @@ jobs:
7974
make
8075
- name: Run Llama-3.2-1B-Instruct-F16.gguf
8176
run: |
82-
set -x
8377
cd ${{ github.workspace }}
8478
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
8579
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
@@ -88,7 +82,6 @@ jobs:
8882
--prompt "Say hello"
8983
- name: Run Qwen3-4B-f16.gguf
9084
run: |
91-
set -x
9285
cd ${{ github.workspace }}
9386
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
9487
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
@@ -97,7 +90,6 @@ jobs:
9790
--prompt "Say hello"
9891
- name: Run Mistral-7B-Instruct-v0.3.fp16.gguf
9992
run: |
100-
set -x
10193
cd ${{ github.workspace }}
10294
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
10395
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
@@ -106,7 +98,6 @@ jobs:
10698
--prompt "Say hello"
10799
- name: Run Qwen2.5-1.5b-instruct-fp16.gguf
108100
run: |
109-
set -x
110101
cd ${{ github.workspace }}
111102
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
112103
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }

0 commit comments

Comments
 (0)