Skip to content

Commit

Permalink
#76 Update checkout action in portability workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kwabenantim committed Feb 11, 2025
1 parent 82cabbf commit f387c5c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/image-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,16 @@ jobs:

steps:
- name: Checkout Chaste/${{ github.event.inputs.chaste_branch }}
uses: actions/checkout@v4
with:
repository: Chaste/Chaste
path: /home/runner/Chaste
ref: ${{ github.event.inputs.chaste_branch }}

- name: Create build directory
run: |
git clone -b ${{ github.event.inputs.chaste_branch }} https://github.com/Chaste/Chaste
cd Chaste && mkdir -p build
working-directory: /home/runner
mkdir -p build
working-directory: /home/runner/Chaste

- name: Create build env init script
run: |
Expand Down
2 changes: 1 addition & 1 deletion scripts/system/setup_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ apt-get install -y --no-install-recommends \
# https://bugs.launchpad.net/ubuntu/+source/expat/+bug/2058415
if [ "${codename}" = 'jammy' ]; then
apt-get update && \
apt-get install libexpat1=2.4.7-1 libexpat1-dev=2.4.7-1 && \
apt-get install -y libexpat1=2.4.7-1 libexpat1-dev=2.4.7-1 && \
apt-mark hold libexpat1 libexpat1-dev
fi

Expand Down

0 comments on commit f387c5c

Please sign in to comment.