Skip to content

Commit 3925f1c

Browse files
authored
Refactor workflow step names for consistency
Updated names of several steps in the workflow to remove brackets.
1 parent 787bcf8 commit 3925f1c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,40 +71,40 @@ jobs:
7171
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
7272
which tornado || { echo "::error::tornado unavailable during GPULlama3 build"; exit 1; }
7373
tornado --version
74-
make
75-
- name: [FP16] Run Llama-3.2-1B-Instruct-F16.gguf
74+
./mvnw clean package -DskipTests
75+
- name: FP16 - Run Llama-3.2-1B-Instruct-F16.gguf
7676
run: |
7777
cd ${{ github.workspace }}
7878
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
7979
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
8080
./llama-tornado --gpu --opencl \
8181
--model /home/michalis/models/Llama-3.2-1B-Instruct-F16.gguf \
8282
--prompt "Say hello"
83-
- name: [FP16] Run Qwen3-4B-f16.gguf
83+
- name: FP16 - Run Qwen3-4B-f16.gguf
8484
run: |
8585
cd ${{ github.workspace }}
8686
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
8787
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
8888
./llama-tornado --gpu --opencl \
8989
--model /opt/models/Qwen3-4B-f16.gguf \
9090
--prompt "Say hello"
91-
- name: [FP16] Run Mistral-7B-Instruct-v0.3.fp16.gguf
91+
- name: FP16 - Run Mistral-7B-Instruct-v0.3.fp16.gguf
9292
run: |
9393
cd ${{ github.workspace }}
9494
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
9595
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
9696
./llama-tornado --gpu --opencl \
9797
--model /opt/models/Mistral-7B-Instruct-v0.3.fp16.gguf \
9898
--prompt "Say hello"
99-
- name: [FP16] Run Qwen2.5-1.5b-instruct-fp16.gguf
99+
- name: FP16 - Run Qwen2.5-1.5b-instruct-fp16.gguf
100100
run: |
101101
cd ${{ github.workspace }}
102102
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
103103
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
104104
./llama-tornado --gpu --opencl \
105105
--model /opt/models/qwen2.5-1.5b-instruct-fp16.gguf \
106106
--prompt "Say hello"
107-
- name: [FP16] Run Phi-3-mini-4k-instruct-fp16.gguf
107+
- name: FP16 - Run Phi-3-mini-4k-instruct-fp16.gguf
108108
run: |
109109
cd ${{ github.workspace }}
110110
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"

0 commit comments

Comments
 (0)