자산: Buildroot 법적 고지와 경고를 구분 #3
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: buildroot-guest | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| push: | |
| branches: [main] | |
| paths: | |
| - scripts/buildroot/** | |
| - scripts/assetCatalog.json | |
| - .github/workflows/buildroot-guest.yml | |
| permissions: | |
| contents: read | |
| jobs: | |
| reproduce: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 120 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - name: Build pinned Buildroot guest and legal material | |
| run: npm run assets:buildroot | |
| - name: Upload reproducible guest bundle | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pyproc-buildroot-guest | |
| path: | | |
| .cache/buildrootGuest/dist/ | |
| .cache/buildrootGuest/output/legal-info/ | |
| if-no-files-found: error | |
| retention-days: 30 |