fix: animate emotes when overlay is open #1813
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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: [false] | |
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/[email protected] | |
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 |