Skip to content

Nightly CI 😴

Nightly CI 😴 #155

Workflow file for this run

name: Nightly CI
on:
schedule:
- cron: '0 0 * * *'
env:
FORCE_COLOR: 1
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: 32G
SCCACHE_VERSION: v0.4.1
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
jobs:
test:
uses: ./.github/workflows/_10_test.yml
secrets: inherit
build:
uses: ./.github/workflows/_20_build.yml
secrets: inherit
with:
network: development
docker:
needs: [build]
uses: ./.github/workflows/_24_docker.yml
secrets: inherit
with:
network: development
environment: dev
package:
needs: [build]
uses: ./.github/workflows/_25_package.yml
with:
network: "development"
environment: dev
secrets: inherit
post-check:
needs: [build]
uses: ./.github/workflows/_40_post_check.yml
secrets: inherit
publish:
needs: [package]
uses: ./.github/workflows/_30_publish.yml
with:
version: nightly/
environment: dev
secrets: inherit