Split video_renderer_flip() from present(), call it from the main loo… #42
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: Check the builds aren't broken | |
on: push | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
linux: | |
name: "make all" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: ./make-docker -j8 DEBUG=1 all | |
mac: | |
name: "make macbundle" | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Builld | |
run: make macbundle |