aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-01-12 20:06:16 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-01-12 20:06:16 -0500
commit8cb25593c65dd037e9a3c20df59fdde003cea504 (patch)
treee52b4d07a06754d7b500bb1f84f8283a96fd26ef
parente5bffa4bfa5a5a4a29dc5d1ccb250f37d938664e (diff)
Buildspec
-rw-r--r--.onedev-buildspec.yml44
1 files changed, 44 insertions, 0 deletions
diff --git a/.onedev-buildspec.yml b/.onedev-buildspec.yml
new file mode 100644
index 0000000..a92c63e
--- /dev/null
+++ b/.onedev-buildspec.yml
@@ -0,0 +1,44 @@
+version: 17
+jobs:
+- name: GitHub Push
+ steps:
+ - !PushRepository
+ name: Github push sync
+ remoteUrl: https://github.com/VnUgE/VNLib.Plugins.Essentials.Oauth.git
+ userName: VnUgE
+ passwordSecret: github-access-token
+ withLfs: false
+ force: false
+ condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
+ triggers:
+ - !TagCreateTrigger
+ projects: VNLib.Plugins.Essentials.Oauth
+ - !BranchUpdateTrigger
+ projects: VNLib.Plugins.Essentials.Oauth
+ retryCondition: never
+ maxRetries: 3
+ retryDelay: 30
+ cpuRequirement: 250
+ memoryRequirement: 256
+ timeout: 3600
+- name: GitHub Pull
+ steps:
+ - !PullRepository
+ name: GitHub sync pull
+ remoteUrl: https://github.com/VnUgE/VNLib.Plugins.Essentials.Oauth.git
+ userName: VnUgE
+ passwordSecret: github-access-token
+ refs: refs/heads/* refs/tags/*
+ withLfs: false
+ force: false
+ condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
+ triggers:
+ - !ScheduleTrigger
+ cronExpression: 0 15 10 ? * *
+ projects: VNLib.Plugins.Essentials.Oauth
+ retryCondition: never
+ maxRetries: 3
+ retryDelay: 30
+ cpuRequirement: 250
+ memoryRequirement: 256
+ timeout: 3600