RESTRICT/DERESTRICT security boundary #993
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: Retro Rocket CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| iso: | |
| name: Build and package ISO | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install apt packages | |
| run: sudo apt-get update && | |
| sudo apt-get install nasm xorriso mtools php | |
| - name: Generate CMake | |
| run: mkdir build && cd build && cmake .. | |
| - name: Build Project | |
| run: cd build && make -j4 | |
| - name: Prepare for packaging | |
| run: cd build && mkdir package && cp -rv *.sh *.iso usb.img package/ | |
| - name: Upload Binary (iso) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: "retro-rocket" | |
| path: '${{github.workspace}}/build/package/*' |