Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.0 KiB
101 lines
3.0 KiB
name: CI - macOS |
|
on: [pull_request, push] |
|
|
|
jobs: |
|
ci: |
|
name: Build |
|
runs-on: macos-latest |
|
|
|
strategy: |
|
fail-fast: false |
|
matrix: |
|
libt_version: ["2.0.4", "1.2.14"] |
|
qbt_gui: ["GUI=ON", "GUI=OFF"] |
|
qt_version: ["5.15.2", "6.2.0"] |
|
exclude: |
|
- libt_version: "1.2.14" |
|
qt_version: "6.2.0" |
|
|
|
env: |
|
openssl_root: /usr/local/opt/openssl@1.1 |
|
|
|
steps: |
|
- name: Checkout repository |
|
uses: actions/checkout@v2 |
|
|
|
- name: Install dependencies |
|
run: | |
|
brew update > /dev/null |
|
brew install \ |
|
cmake ninja \ |
|
boost openssl@1.1 zlib |
|
|
|
- name: Setup ccache |
|
uses: Chocobo1/setup-ccache-action@v1 |
|
with: |
|
update_packager_index: false |
|
|
|
- name: Install Qt |
|
uses: jurplel/install-qt-action@v2 |
|
with: |
|
version: ${{ matrix.qt_version }} |
|
|
|
- name: Install libtorrent |
|
run: | |
|
git clone --branch v${{ matrix.libt_version }} --depth 1 https://github.com/arvidn/libtorrent.git |
|
cd libtorrent |
|
git submodule update --init --recursive |
|
cmake \ |
|
-B build \ |
|
-G "Ninja" \ |
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ |
|
-DCMAKE_CXX_STANDARD=17 \ |
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ |
|
-Ddeprecated-functions=OFF \ |
|
-DOPENSSL_ROOT_DIR="${{ env.openssl_root }}" |
|
cmake --build build |
|
sudo cmake --install build |
|
|
|
- name: Build qBittorrent (Qt5) |
|
if: ${{ startsWith(matrix.qt_version, 5) }} |
|
run: | |
|
cmake \ |
|
-B build \ |
|
-G "Ninja" \ |
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ |
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ |
|
-DOPENSSL_ROOT_DIR="${{ env.openssl_root }}" \ |
|
-DQt5_DIR="$Qt5_DIR" \ |
|
-DVERBOSE_CONFIGURE=ON \ |
|
-D${{ matrix.qbt_gui }} |
|
cmake --build build |
|
|
|
- name: Build qBittorrent (Qt6) |
|
if: ${{ startsWith(matrix.qt_version, 6) }} |
|
run: | |
|
cmake \ |
|
-B build \ |
|
-G "Ninja" \ |
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ |
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ |
|
-DOPENSSL_ROOT_DIR="${{ env.openssl_root }}" \ |
|
-DQT6=ON \ |
|
-DQt6_DIR="$Qt6_DIR" \ |
|
-DVERBOSE_CONFIGURE=ON \ |
|
-D${{ matrix.qbt_gui }} |
|
cmake --build build |
|
|
|
- name: Prepare build artifacts |
|
run: | |
|
mkdir upload |
|
mv build/qbittorrent*.app upload |
|
mkdir upload/cmake |
|
cp build/compile_commands.json upload/cmake |
|
mkdir upload/cmake/libtorrent |
|
cp libtorrent/build/compile_commands.json upload/cmake/libtorrent |
|
|
|
- name: Upload build artifacts |
|
uses: actions/upload-artifact@v2 |
|
with: |
|
name: qBittorrent-CI_macOS_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} |
|
path: upload
|
|
|