Skip to content

Commit

Permalink
Shorten CI job names (intel#133)
Browse files Browse the repository at this point in the history
* update

Signed-off-by: Wu, Xiaochang <[email protected]>

* update

Signed-off-by: Wu, Xiaochang <[email protected]>

* update

Signed-off-by: Wu, Xiaochang <[email protected]>

* update

Signed-off-by: Wu, Xiaochang <[email protected]>

---------

Signed-off-by: Wu, Xiaochang <[email protected]>
  • Loading branch information
xwu99 authored Mar 11, 2024
1 parent 6a3d0ca commit c5c076a
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 31 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/workflow_finetune.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:

jobs:
inference:
name: finetune test
name: finetune
strategy:
matrix:
model: [ EleutherAI/gpt-j-6b, meta-llama/Llama-2-7b-chat-hf, gpt2, bigscience/bloom-560m, facebook/opt-125m, mosaicml/mpt-7b-chat, huggyllama/llama-7b, mistralai/Mistral-7B-v0.1 ]
Expand Down Expand Up @@ -184,5 +184,3 @@ jobs:
cid=$(docker ps -q --filter "name=finetune")
if [[ ! -z "$cid" ]]; then docker stop $cid && docker rm $cid; fi
- name: Test Summary
run: echo "to be continued"
9 changes: 4 additions & 5 deletions .github/workflows/workflow_finetune_gpu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Finetune on Intel GPU
name: Finetune-GPU

on:
workflow_call:
Expand All @@ -14,8 +14,8 @@ on:
default: 'http://10.24.221.149:911'

jobs:
finetune:
name: finetune on gpu test
finetune-gpu:
name: finetune-gpu
strategy:
matrix:
model: [ meta-llama/Llama-2-7b-chat-hf ]
Expand All @@ -42,5 +42,4 @@ jobs:
tar zcf /home/ci/borealis-runner/llm-on-ray.tar.gz -C /home/ci/actions-runner/_work/llm-on-ray .
cd /home/ci/borealis-runner/
python3 finetune_on_pvc.py --need_create_conda_env true --base_models "${{ matrix.model }}"
- name: Test Summary
run: echo "to be continued"
4 changes: 2 additions & 2 deletions .github/workflows/workflow_inference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:

jobs:
inference:
name: inference test
name: inference
strategy:
matrix:
model: [ gpt-j-6b, gpt2, bloom-560m, opt-125m, mpt-7b, mistral-7b-v0.1, mpt-7b-bigdl, neural-chat-7b-v3-1, CodeLlama-7b-hf, falcon-7b, starcoder, llama-2-7b-chat-hf, llama-2-7b-chat-hf-vllm ]
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
uses: actions/checkout@v2

- name: Load environment variables
run: cat /root/actions-runner-config/.env >> $GITHUB_ENV
run: cat /root/actions-runner-config/.env >> $GITHUB_ENV

- name: Determine Target
id: "target"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
lint:
name: lint check
name: lint
runs-on: ubuntu-latest

defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow_orders_nightly.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: llm-ray inference & finetune nightly
name: Nightly

on:
schedule:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/workflow_orders_on_merge.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: llm-ray inference & finetune
name: Merge

on:
push:
Expand All @@ -17,14 +17,14 @@ on:
- 'tests/**'

jobs:
call-lint:
Lint:
uses: ./.github/workflows/workflow_lint.yml

call-tests:
Tests:
uses: ./.github/workflows/workflow_tests.yml
call-inference:

Inference:
uses: ./.github/workflows/workflow_inference.yml

call-finetune:
Finetune:
uses: ./.github/workflows/workflow_finetune.yml
16 changes: 8 additions & 8 deletions .github/workflows/workflow_orders_on_pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: llm-ray inference & finetune
name: PR

on:
pull_request:
Expand All @@ -18,17 +18,17 @@ on:

jobs:

call-lint:
Lint:
uses: ./.github/workflows/workflow_lint.yml

call-tests:
needs: call-lint
Tests:
needs: Lint
uses: ./.github/workflows/workflow_tests.yml

call-inference:
needs: call-lint
Inference:
needs: Lint
uses: ./.github/workflows/workflow_inference.yml

call-finetune:
needs: call-lint
Finetune:
needs: Lint
uses: ./.github/workflows/workflow_finetune.yml
10 changes: 5 additions & 5 deletions .github/workflows/workflow_tests.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: tests
name: Tests

on:
workflow_call

jobs:
build:

tests:
name: tests
runs-on: ubuntu-latest

defaults:
run:
shell: bash

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit c5c076a

Please sign in to comment.