ci: use universal build for macOS #391
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 Ubuntu | |
on: | |
pull_request: | |
workflow_dispatch: | |
merge_group: | |
push: | |
branches: | |
- master | |
- main | |
env: | |
TWITCH_PUBSUB_SERVER_TAG: v1.0.7 | |
QT_QPA_PLATFORM: minimal | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "${{ matrix.os }}" | |
runs-on: ubuntu-latest | |
container: ${{ matrix.container }} | |
strategy: | |
matrix: | |
include: | |
- os: "ubuntu-22.04" | |
container: ghcr.io/chatterino/chatterino2-build-ubuntu-22.04:latest | |
qt-version: 6.7.1 | |
plugins: true | |
fail-fast: false | |
env: | |
C2_PLUGINS: ${{ matrix.plugins }} | |
C2_BUILD_WITH_QT6: ${{ startsWith(matrix.qt-version, '6.') }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Create build directory (Ubuntu) | |
run: mkdir build-test | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo DEBIAN_FRONTEND=noninteractive apt -y --no-install-recommends install \ | |
libbenchmark-dev gcovr gnupg | |
- name: Build (Ubuntu) | |
run: | | |
cmake \ | |
-DBUILD_TESTS=On \ | |
-DBUILD_BENCHMARKS=On \ | |
-DBUILD_APP=OFF \ | |
-DCHATTERINO_PLUGINS="$C2_PLUGINS" \ | |
-DCMAKE_PREFIX_PATH="$Qt6_DIR/lib/cmake" \ | |
-DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \ | |
-DCHATTERINO_STATIC_QT_BUILD=On \ | |
-DCHATTERINO_GENERATE_COVERAGE=On \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
.. | |
cmake --build . | |
working-directory: build-test | |
- 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 }}-linux-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 .. | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Cargo Install httpbox | |
run: | | |
cargo install --git https://github.com/kevinastone/httpbox --rev 89b971f | |
- 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 --exclude-regex ClassicEmoteNameFiltering | |
working-directory: build-test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
plugin: gcov | |
fail_ci_if_error: true | |
verbose: true | |
if: false |