mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
d4fdfd15af
Bumps [jurplel/install-qt-action](https://github.com/jurplel/install-qt-action) from 4.0.0 to 4.1.1. - [Release notes](https://github.com/jurplel/install-qt-action/releases) - [Commits](https://github.com/jurplel/install-qt-action/compare/v4.0.0...v4.1.1) --- updated-dependencies: - dependency-name: jurplel/install-qt-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
103 lines
3.3 KiB
YAML
103 lines
3.3 KiB
YAML
---
|
|
name: Test MacOS
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
merge_group:
|
|
|
|
env:
|
|
TWITCH_PUBSUB_SERVER_TAG: v1.0.7
|
|
HTTPBOX_TAG: v0.2.1
|
|
QT_QPA_PLATFORM: minimal
|
|
HOMEBREW_NO_AUTO_UPDATE: 1
|
|
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
|
|
|
|
concurrency:
|
|
group: test-macos-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test-macos:
|
|
name: "Test ${{ matrix.os }}, Qt ${{ matrix.qt-version }}"
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-13]
|
|
qt-version: [5.15.2, 6.7.1]
|
|
plugins: [true]
|
|
fail-fast: false
|
|
env:
|
|
C2_BUILD_WITH_QT6: ${{ startsWith(matrix.qt-version, '6.') && 'ON' || 'OFF' }}
|
|
QT_MODULES: ${{ startsWith(matrix.qt-version, '6.') && 'qt5compat qtimageformats' || '' }}
|
|
|
|
steps:
|
|
- name: Enable plugin support
|
|
if: matrix.plugins
|
|
run: |
|
|
echo "C2_PLUGINS=ON" >> "$GITHUB_ENV"
|
|
|
|
- name: Set BUILD_WITH_QT6
|
|
if: startsWith(matrix.qt-version, '6.')
|
|
run: |
|
|
echo "C2_BUILD_WITH_QT6=ON" >> "$GITHUB_ENV"
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0 # allows for tags access
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v4.1.1
|
|
with:
|
|
cache: true
|
|
cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2
|
|
modules: ${{ env.QT_MODULES }}
|
|
version: ${{ matrix.qt-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
brew install boost openssl rapidjson p7zip create-dmg cmake
|
|
|
|
- name: Install httpbox
|
|
run: |
|
|
curl -L -o httpbox.tar.xz "https://github.com/Chatterino/httpbox/releases/download/${{ env.HTTPBOX_TAG }}/httpbox-x86_64-apple-darwin.tar.xz"
|
|
tar -xJf httpbox.tar.xz
|
|
mv ./httpbox-x86_64-apple-darwin/httpbox /usr/local/bin
|
|
working-directory: /tmp
|
|
|
|
- name: Build
|
|
run: |
|
|
mkdir build-test
|
|
cd build-test
|
|
cmake \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DBUILD_TESTS=On \
|
|
-DBUILD_APP=OFF \
|
|
-DUSE_PRECOMPILED_HEADERS=OFF \
|
|
-DCHATTERINO_PLUGINS="$C2_PLUGINS" \
|
|
-DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \
|
|
..
|
|
make -j"$(sysctl -n hw.logicalcpu)"
|
|
|
|
- name: Download and extract Twitch PubSub Server Test
|
|
run: |
|
|
mkdir pubsub-server-test
|
|
curl -L -o pubsub-server.tar.gz "https://github.com/Chatterino/twitch-pubsub-server-test/releases/download/${{ env.TWITCH_PUBSUB_SERVER_TAG }}/server-${{ env.TWITCH_PUBSUB_SERVER_TAG }}-darwin-amd64.tar.gz"
|
|
tar -xzf pubsub-server.tar.gz -C pubsub-server-test
|
|
rm pubsub-server.tar.gz
|
|
cd pubsub-server-test
|
|
curl -L -o server.crt "https://github.com/Chatterino/twitch-pubsub-server-test/raw/${{ env.TWITCH_PUBSUB_SERVER_TAG }}/cmd/server/server.crt"
|
|
curl -L -o server.key "https://github.com/Chatterino/twitch-pubsub-server-test/raw/${{ env.TWITCH_PUBSUB_SERVER_TAG }}/cmd/server/server.key"
|
|
cd ..
|
|
|
|
- name: Test
|
|
timeout-minutes: 30
|
|
run: |
|
|
httpbox --port 9051 &
|
|
cd ../pubsub-server-test
|
|
./server 127.0.0.1:9050 &
|
|
cd ../build-test
|
|
ctest --repeat until-pass:4 --output-on-failure
|
|
working-directory: build-test
|