Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
223 changes: 0 additions & 223 deletions .github/workflows/branchbuild.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/coverage.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/docs.yml

This file was deleted.

56 changes: 56 additions & 0 deletions .github/workflows/nanvix-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Copyright(c) The Maintainers of Nanvix.
# Licensed under the MIT License.

name: Nanvix CI

on:
schedule:
- cron: "0 13 * * *"
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@v2.0.0
with:
zutil-version: "v0.8.2"
docker-image: "ghcr.io/nanvix/toolchain-python:latest"
platforms: '["microvm"]'
memory-sizes: '["256mb"]'
windows-matrix-exclude: '[]'
skip-full-test-modes: '[]'
caller-event-name: ${{ github.event_name }}
windows-test: false
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@v2.0.0
with:
zutil-version: "v0.8.2"
docker-image: "ghcr.io/nanvix/toolchain-python:latest"
platforms: '["microvm"]'
memory-sizes: '["256mb"]'
windows-matrix-exclude: '[]'
skip-full-test-modes: '[]'
caller-event-name: 'schedule'
windows-test: false
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }}
Loading
Loading