Skip to content

Commit

Permalink
fix: install python before meson
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Jan 31, 2024
1 parent c9f3a60 commit 131317f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/install-dependency-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

set -e

PACKAGE_LIST_MACOS=(
fmt
yaml-cpp
tree
)

PACKAGE_LIST_ARCH_LINUX=(
fmt
yaml-cpp
Expand All @@ -17,6 +11,12 @@ PACKAGE_LIST_ARCH_LINUX=(
python
)

PACKAGE_LIST_MACOS=(
fmt
yaml-cpp
tree
)

if [ $# -ne 1 ]; then
echo "USAGE: $0 [runner]" >&2
exit 2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ jobs:
fetch-tags: true
fetch-depth: 0
### dependencies
- name: setup meson
run: python -m pip install meson ninja
- name: install dependency packages
run: .github/install-dependency-packages.sh ${{ inputs.runner }}
- name: setup meson
run: python -m pip install meson ninja
- name: get local dependencies
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 131317f

Please sign in to comment.