Skip to content

Commit

Permalink
Separate iOS / tvOS download scripts
Browse files Browse the repository at this point in the history
(cherry picked from commit e5d753b642efd693112d12fb68133530ee9a5535)
  • Loading branch information
danoli3 committed May 12, 2022
1 parent 056cc64 commit 3830743
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build-ios-tvos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- uses: actions/checkout@v2
- name: Download libs
run: ./scripts/${{matrix.cfg.libs}}/download_libs.sh
- name: Download tvos libs
run: ./scripts/${{matrix.cfg.libs}}/download_libs_tvos.sh
- name: install
run: ./scripts/ci/$TARGET/install.sh
- name: Build
Expand Down
1 change: 0 additions & 1 deletion scripts/ios/download_libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $SCRIPT_DIR
../dev/download_libs.sh -p ios -n $@
../dev/download_libs.sh -p tvos -n $@
4 changes: 4 additions & 0 deletions scripts/ios/download_libs_tvos.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env bash
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $SCRIPT_DIR
../dev/download_libs.sh -p tvos -n $@

0 comments on commit 3830743

Please sign in to comment.