Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ElderOrb committed May 4, 2024
1 parent 5fda331 commit f64e0d5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/qctools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install dependencies
run: |
brew install ${{ matrix.packages }} pkg-config ffmpeg qt@5
brew install ${{ matrix.packages }} pkg-config ffmpeg@6 qt@5
- name: Install qwt-qt5
run: |
Expand All @@ -53,6 +53,7 @@ jobs:
cd Project/QtCreator
mkdir build
cd build
export PKG_CONFIG_PATH="/opt/homebrew/opt/ffmpeg@6/lib/pkgconfig"
qmake ..
make CC=$CC CXX=$CXX -j4
Expand Down Expand Up @@ -87,7 +88,7 @@ jobs:
- name: Install dependencies
run: |
brew install ${{ matrix.packages }} pkg-config ffmpeg qt
brew install ${{ matrix.packages }} pkg-config ffmpeg@6 qt
- name: Install qwt
run: |
Expand All @@ -104,6 +105,7 @@ jobs:
cd Project/QtCreator
mkdir build
cd build
export PKG_CONFIG_PATH="/opt/homebrew/opt/ffmpeg@6/lib/pkgconfig"
qmake ..
make -j4
Expand Down Expand Up @@ -147,6 +149,10 @@ jobs:
version: ${{ matrix.qt_version }}
modules: ${{ matrix.qt_modules }}

- name: Set Qt5 environment path
run: |
echo "/usr/local/opt/qt5/bin" >> $GITHUB_PATH
- name: Build qwt
env:
QT_VERSION: ${{ matrix.qt.version }}
Expand Down Expand Up @@ -223,6 +229,10 @@ jobs:
version: ${{ matrix.qt_version }}
modules: ${{ matrix.qt_modules }}

- name: Set Qt6 environment path
run: |
echo "/usr/local/opt/qt6/bin" >> $GITHUB_PATH
- name: Build qwt
run: |
git clone --branch qwt-6.2 --depth 1 https://git.code.sf.net/p/qwt/git ../qwt
Expand Down

0 comments on commit f64e0d5

Please sign in to comment.