name: Make PNG run-name: ${{ gitea.actor }} is recording the PNG output. on: push jobs: build-app: runs-on: linux_amd64 steps: - name: Checkout current uses: actions/checkout@v4 with: path: curr submodules: recursive - name: Checkout previous uses: actions/checkout@v4 with: path: prev fetch-depth: 2 submodules: recursive - run: cd prev && git checkout HEAD^ - name: Build current run: cmake -S curr -B curr/build -DGLERMINAL_TEST=ON && cmake --build curr/build - name: Build previous run: cmake -S prev -B prev/build -DGLERMINAL_TEST=ON && cmake --build prev/build - name: Generate PNG file for current run: cd curr/build/tests && XDG_RUNTIME_DIR=$PWD xvfb-run -a ./test-basic - name: Generate PNG file for previous run: cd prev/build/tests && XDG_RUNTIME_DIR=$PWD xvfb-run -a ./test-basic - name: Upload current PNG uses: actions/upload-artifact@v4 with: name: current-basic path: curr/build/tests/image.png - name: Upload previous PNG uses: actions/upload-artifact@v4 with: name: previous-basic path: prev/build/tests/image.png - name: Compare PNG files run: diff curr/build/tests/image.png prev/build/tests/image.png