Skip to content

Commit

Permalink
Adjust cron schedule for Fluffy nightly Docker build (#1917)
Browse files Browse the repository at this point in the history
With this schedule the new fluffy Docker build should be available
before public portal-hive tests are run. Else, we get an extra day
of delay to see the results of the current latest.
  • Loading branch information
kdeme authored Dec 1, 2023
1 parent d4fc234 commit 5e9e6ee
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,16 @@
name: Nimbus CI
on:
push:
paths-ignore: ['doc/**', 'docs/**', '**/*.md', 'hive_integration/**',
'fluffy/**', '.github/workflows/fluffy.yml',
'nimbus_verified_proxy/**', '.github/workflows/nimbus_verified_proxy.yml',
]
paths-ignore:
- 'doc/**'
- 'docs/**'
- '**/*.md'
'hive_integration/**'
'fluffy/**'
'.github/workflows/fluffy*.yml'
'nimbus_verified_proxy/**'
'.github/workflows/nimbus_verified_proxy.yml'

# Disable `pull_request`. Experimenting with using only `push` for PRs.
#pull_request:
# paths-ignore: ['doc/**', 'docs/**', '**/*.md', 'hive_integration/**']
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fluffy.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Nimbus
# Fluffy
# Copyright (c) 2021-2023 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.

name: fluffy CI
name: Fluffy CI
on:
push:
paths:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/fluffy_docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
name: fluffy docs CI
# Fluffy
# Copyright (c) 2023 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.

name: Fluffy docs CI

on:
push:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/fluffy_nightly_docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Fluffy
# Copyright (c) 2023 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.

name: Fluffy nightly Docker build
on:
schedule:
- cron: "30 3 * * *"
- cron: "30 0 * * *"
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 5e9e6ee

Please sign in to comment.