mirror of
https://git.shylie.info/shylie/glerminal.git
synced 2024-11-12 21:10:04 +00:00
Upload test images as artifacts
This commit is contained in:
parent
be6a31043a
commit
526924d02a
@ -23,9 +23,19 @@ jobs:
|
||||
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 curr
|
||||
- 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 prev
|
||||
- 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
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
namespace
|
||||
{
|
||||
unsigned char pixels[1280 * 800 * 3];
|
||||
unsigned char pixels[(GRID_WIDTH * CELL_SCALE * 8) * (GRID_HEIGHT * CELL_SCALE * 8) * 3];
|
||||
}
|
||||
|
||||
void glerminal_test_save_image()
|
||||
@ -21,5 +21,5 @@ void glerminal_test_save_image()
|
||||
glGetTexImage(GL_TEXTURE_2D, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels);
|
||||
|
||||
stbi_flip_vertically_on_write(true);
|
||||
stbi_write_png("image.png", GRID_WIDTH * CELL_SCALE * 8, GRID_HEIGHT * CELL_SCALE * 8, 3, pixels, 1280 * 3);
|
||||
stbi_write_png("image.png", GRID_WIDTH * CELL_SCALE * 8, GRID_HEIGHT * CELL_SCALE * 8, 3, pixels, GRID_WIDTH * CELL_SCALE * 8 * 3);
|
||||
}
|
Loading…
Reference in New Issue
Block a user