Skip to content

Commit

Permalink
Update workflow to include depot_tools install
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Dec 28, 2023
1 parent f291b2d commit 20b2adb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/osx_wheels_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ jobs:
- name: Install build dependencies
run: |
brew install pkg-config cmake ninja
- name: Build universal Kivy dependencies
- name: Build universal Kivy dependencies (needs depot_tools for ANGLE build)
run: |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /tmp/depot_tools
export PATH=$PATH:/tmp/depot_tools
./tools/build_macos_dependencies.sh
- name: Install cibuildwheel
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test_osx_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ jobs:
- name: Install build dependencies
run: |
brew install pkg-config cmake ninja
- name: Install dependencies
- name: Install dependencies (needs depot_tools for ANGLE build)
run: |
source .ci/ubuntu_ci.sh
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /tmp/depot_tools
export PATH=$PATH:/tmp/depot_tools
./tools/build_macos_dependencies.sh
install_kivy_test_run_pip_deps
- name: Install Kivy
Expand Down

0 comments on commit 20b2adb

Please sign in to comment.