Skip to content

Wire up raybox-zero '1.5'; RTL sim works. No harden yet #9

Wire up raybox-zero '1.5'; RTL sim works. No harden yet

Wire up raybox-zero '1.5'; RTL sim works. No harden yet #9

Workflow file for this run

name: gds
on:
push:
workflow_dispatch:
jobs:
gds:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build GDS
uses: TinyTapeout/tt-gds-action@tt07
precheck:
needs: gds
runs-on: ubuntu-latest
steps:
- name: Run Tiny Tapeout Precheck
uses: TinyTapeout/tt-gds-action/precheck@tt07
gl_test:
needs: gds
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: GL test
uses: TinyTapeout/tt-gds-action/gl_test@tt07
- name: Convert output frames from PPMs to MP4
shell: bash
run: |
pwd
ls -al
cd test
./animate.sh ./frames_out/frames.mp4
- name: Convert output frames from PPMs to PNGs
shell: bash
run: >
pwd
ls -al
cd test
mkdir frames_out/png
/animate.sh ./frames_out/png
&& cd ./frames_out/png
&& tar xzf ../frames.tgz *.png
- name: Store PNGs and MP4
uses: actions/upload-artifact@4
with:
name: frames-gl
path: |
test/frames_out/frames.mp4
test/frames_out/frames.tgz
viewer:
needs: gds
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
steps:
- uses: TinyTapeout/tt-gds-action/viewer@tt07