Skip to content

Commit

Permalink
get all submodules when building example
Browse files Browse the repository at this point in the history
  • Loading branch information
Kswin01 committed Apr 17, 2024
1 parent 36b76ae commit 6529510
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
run: git
- name: Download Microkit SDK
run: ./ci/acquire_sdk.sh microkit-sdk.zip ${{ secrets.GITHUB_TOKEN }} linux-x86-64
shell: bash
Expand All @@ -29,8 +30,10 @@ jobs:
tar xf aarch64-toolchain.tar.gz
echo "$(pwd)/arm-gnu-toolchain-11.3.rel1-x86_64-aarch64-none-elf/bin" >> $GITHUB_PATH
- name: Build example
run: ./ci/example.sh ${PWD}/microkit-sdk-1.2.6
shell: bash
run: |
git submodule update --init --recursive
./ci/example.sh ${PWD}/microkit-sdk-1.2.6
build_test_toperf_linux_x86_64:
name: Build/test toperf (Linux x86-64)
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 6529510

Please sign in to comment.