Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
ZKAPAuthorizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Administrator
ZKAPAuthorizer
Commits
af7d6970
Commit
af7d6970
authored
3 years ago
by
Jean-Paul Calderone
Browse files
Options
Downloads
Patches
Plain Diff
Try adding a scheduled workflow
parent
db98de7c
No related branches found
No related tags found
1 merge request
!201
Try adding a scheduled workflow
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.circleci/config.yml
+27
-1
27 additions, 1 deletion
.circleci/config.yml
with
27 additions
and
1 deletion
.circleci/config.yml
+
27
−
1
View file @
af7d6970
...
...
@@ -134,7 +134,7 @@ jobs:
environment
:
ZKAPAUTHORIZER_HYPOTHESIS_PROFILE
:
"
ci"
linux-tests
:
linux-tests
:
&LINUX_TESTS
docker
:
# Run in a highly Nix-capable environment.
-
image
:
"
nixorg/nix:circleci"
...
...
@@ -246,6 +246,16 @@ jobs:
command
:
|
./.circleci/report-coverage.sh
# A variation of linux-tests that is only run once a week and is given
# enough resources that it can build not only ZKAPAuthorizer but all its
# dependencies within the limited time period imposed by CircleCI.
linux-tests-big
:
# Everything is the same as the linux-tests job ...
<<
:
*LINUX_TESTS
# ... except more resources from the platform.
resource_class
:
"
xlarge"
workflows
:
version
:
2
everything
:
...
...
@@ -262,3 +272,19 @@ workflows:
# https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
-
"
12.3.0"
-
"
11.7.0"
refresh-cache
:
jobs
:
-
"
linux-tests-big"
triggers
:
-
schedule
:
# Run the job once a week. CircleCI caches expired after 15 days so
# this should always keep the latest version of our cache fresh and
# prevent us from actually having to rebuild it very often.
#
# https://circleci.com/docs/2.0/workflows/#specifying-a-valid-schedule
cron
:
"
0
0
*
*
Mon"
filters
:
branches
:
only
:
-
"
master"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment