Skip to content

Commit 05a6079

Browse files
committed
Add a new step for dependencies
1 parent a7696c9 commit 05a6079

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pkgci_test_amd_mi300.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ jobs:
3838
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939
with:
4040
submodules: false
41+
- name: "Install depencies"
42+
run: |
43+
sudo apt-get update
44+
sudo apt-get install -y cmake ninja-build clang lld git
4145
- name: Check out runtime submodules
42-
run: sudo apt update & sudo apt install -y git & ./build_tools/scripts/git/update_runtime_submodules.sh
46+
run: ./build_tools/scripts/git/update_runtime_submodules.sh
4347
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
4448
with:
4549
# Must match the subset of versions built in pkgci_build_packages.
@@ -53,7 +57,6 @@ jobs:
5357
./build_tools/pkgci/setup_venv.py ${VENV_DIR} \
5458
--artifact-path=${PACKAGE_DOWNLOAD_DIR} \
5559
--fetch-gh-workflow=${{ inputs.artifact_run_id }}
56-
sudo apt install -y cmake ninja-build clang lld git
5760
5861
- name: Build tests
5962
run: ./build_tools/pkgci/build_tests_using_package.sh ${VENV_DIR}/bin

0 commit comments

Comments
 (0)