Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Aug 4, 2023
1 parent d034e79 commit 0348c67
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ jobs:
matrix:
include:
- TRIPLET: 'arm-android'
QT_ARCH: 'android_armv7'
- TRIPLET: 'amd64-android'
QT_ARCH: 'android_arm64_v8a'

runs-on: macos-12
env:
Expand All @@ -48,7 +46,7 @@ jobs:
- name: Prepare vars
id: vars
run: |
brew install automake bison flex gnu-sed autoconf-archive libtool gettext
brew install automake bison flex gnu-sed autoconf-archive libtool gettext cmake ninja
echo $(brew --prefix bison)/bin >> $GITHUB_PATH
echo $(brew --prefix flex)/bin >> $GITHUB_PATH
echo $(brew --prefix gettext)/bin >> $GITHUB_PATH
Expand Down Expand Up @@ -85,10 +83,10 @@ jobs:
setup-python: 'false'
modules: 'qtsensors qtconnectivity qt5compat qtmultimedia qtpositioning qtshadertools'
dir: ${{ github.workspace }}
target: ${{ matrix.QT_ARCH }}
target: android
arch: ${{ matrix.qt_arch }}
cache: true
cache-key-prefix: ${{ runner.os }}-QtCache-v2-${{ env.QT_VERSION }}-android
cache-key-prefix: ${{ runner.os }}-QtCache-v3-${{ env.QT_VERSION }}-android

- name: Install Qt (desktop)
uses: jurplel/install-qt-action@v3
Expand All @@ -99,7 +97,7 @@ jobs:
dir: ${{ github.workspace }}
target: desktop
cache: true
cache-key-prefix: ${{ runner.os }}-QtCache-v2-${{ env.QT_VERSION }}-desktop
cache-key-prefix: ${{ runner.os }}-QtCache-v3-${{ env.QT_VERSION }}-desktop

- name: Restore vcpkg folder
id: cache-vcpkg-restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Prepare vars
id: vars
run: |
brew install automake bison flex gnu-sed autoconf-archive libtool gettext
brew install automake bison flex gnu-sed autoconf-archive libtool gettext cmake ninja
echo $(brew --prefix bison)/bin >> $GITHUB_PATH
echo $(brew --prefix flex)/bin >> $GITHUB_PATH
echo $(brew --prefix gettext)/bin >> $GITHUB_PATH
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
git remote add origin https://github.com/microsoft/vcpkg.git
git pull origin master
git checkout $VCPKG_BASELINE
./bootstrap-vcpkg.sh
- name: Build Deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Prepare vars
id: vars
run: |
brew install automake bison flex gnu-sed autoconf-archive libtool gettext
brew install automake bison flex gnu-sed autoconf-archive libtool gettext cmake ninja
echo $(brew --prefix bison)/bin >> $GITHUB_PATH
echo $(brew --prefix flex)/bin >> $GITHUB_PATH
echo $(brew --prefix gettext)/bin >> $GITHUB_PATH
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ jobs:
run: |
CALL "C:\Program Files (x86)\Microsoft Visual Studio\${{ env.VS_VERSION }}\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ env.CMAKE_ARCH }}
cd
- name: Build Deps
shell: pwsh
run: |
Expand Down

0 comments on commit 0348c67

Please sign in to comment.