diff options
-rwxr-xr-x | .github/workflows/gerrit-opa-performance-test.yaml | 8 | ||||
-rwxr-xr-x | .github/workflows/gerrit-opa-stability-test.yaml | 8 | ||||
-rw-r--r-- | version.properties | 13 |
3 files changed, 25 insertions, 4 deletions
diff --git a/.github/workflows/gerrit-opa-performance-test.yaml b/.github/workflows/gerrit-opa-performance-test.yaml index a1dee63..b105f0b 100755 --- a/.github/workflows/gerrit-opa-performance-test.yaml +++ b/.github/workflows/gerrit-opa-performance-test.yaml @@ -63,9 +63,13 @@ on: # To guarantee Maintained check is occasionally updated. See # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained - # Run every Monday at 16:30 UTC + push: + branches: + - '**' + + # Run everyday at 16:30 UTC schedule: - - cron: '30 16 * * 1' + - cron: '30 16 * * *' jobs: run-s3p-tests: diff --git a/.github/workflows/gerrit-opa-stability-test.yaml b/.github/workflows/gerrit-opa-stability-test.yaml index fd9f4e2..65e269d 100755 --- a/.github/workflows/gerrit-opa-stability-test.yaml +++ b/.github/workflows/gerrit-opa-stability-test.yaml @@ -63,9 +63,13 @@ on: # To guarantee Maintained check is occasionally updated. See # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained - # Run every Monday at 16:30 UTC + push: + branches: + - '**' + + # Run everyday at 16:30 UTC schedule: - - cron: '30 16 * * 1' + - cron: '30 16 * * *' jobs: run-s3p-tests: diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..5128787 --- /dev/null +++ b/version.properties @@ -0,0 +1,13 @@ +# Versioning variables +# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) +# because they are used in Jenkins, whose plug-in doesn't support + +major=1 +minor=0 +patch=0 + +base_version=${major}.${minor}.${patch} + +# Release must be completed with git revision # in Jenkins +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT |