fix: use tar.bz2 package format and update docker image reference #60
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
| # Copyright(c) The Maintainers of Nanvix. | |
| # Licensed under the MIT License. | |
| name: Nanvix CI | |
| on: | |
| schedule: | |
| - cron: "0 10 * * *" | |
| push: | |
| branches: ["nanvix/**"] | |
| pull_request: | |
| branches: ["nanvix/**"] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| actions: write | |
| issues: write | |
| pull-requests: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name || github.ref || 'default' }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' | |
| uses: nanvix/workflows/.github/workflows/nanvix-ci.yml@v1.15.0 | |
| with: | |
| zutil-version: "v0.7.48" | |
| platforms: '["microvm"]' | |
| process-modes: '["multi-process","single-process","standalone"]' | |
| memory-sizes: '["256mb"]' | |
| windows-matrix-exclude: '[]' | |
| skip-full-test-modes: '["multi-process","single-process","standalone"]' | |
| caller-event-name: ${{ github.event_name }} | |
| windows-test: true | |
| secrets: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} | |
| DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }} | |
| ci-scheduled: | |
| if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
| uses: nanvix/workflows/.github/workflows/nanvix-ci.yml@v1.15.0 | |
| with: | |
| zutil-version: "v0.7.48" | |
| platforms: '["microvm"]' | |
| process-modes: '["multi-process","single-process","standalone"]' | |
| memory-sizes: '["256mb"]' | |
| windows-matrix-exclude: '[]' | |
| skip-full-test-modes: '["multi-process","single-process","standalone"]' | |
| caller-event-name: 'schedule' | |
| windows-test: true | |
| secrets: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} | |
| DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }} |