fix: initialize all loggers on start to avoid race conditions #195
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: ubuntu-build | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
ubuntu-build: | |
name: build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
- name: Install ffmpeg and ssl | |
run: | | |
sudo apt-get update | |
sudo apt-get install libfreetype6-dev libavformat-dev libavfilter-dev libavcodec-dev libswscale-dev xvfb | |
- name: Meson build | |
uses: BSFishy/[email protected] | |
with: | |
action: build | |
meson-version: 0.63.1 | |
setup-options: -Duse_sdl2_subproject=true | |
# - name: Run tests | |
# run: | | |
# cd build | |
# xvfb-run ./playbackTest | |
- name: Save logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ubuntu-build-logs | |
path: build/meson-logs |