Fix bug for full memory dump (65536 bytes). #95
Workflow file for this run
This file contains hidden or 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: 'Build' | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: giomba/ceda-cemu-builder:1 | |
| options: --user root | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/[email protected] | |
| - name: Software quality | |
| run: | | |
| script/format -n | |
| - name: Build | |
| run: | | |
| git config --global --add safe.directory /__w/ceda-cemu/ceda-cemu | |
| git submodule init | |
| git submodule update | |
| script/build release | |
| script/build debug | |
| script/build test | |
| - name: Test | |
| run: | | |
| build/test/ceda | |