Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

block publish on tests job #319

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions concourse/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,9 @@ resources:
jobs:
- name: test
serial: true
trigger: true
plan:
- get: fauna-shell-repository
- task: schema-tests
file: fauna-shell-repository/concourse/tasks/schema-tests.yml
params:
FAUNA_SECRET: ((cli_test_secret))

- name: release
serial: true
public: false
plan:
- get: fauna-shell-repository

trigger: true
- task: integration-tests
file: fauna-shell-repository/concourse/tasks/integration-tests.yml
privileged: true
Expand All @@ -32,7 +21,17 @@ jobs:
FAUNA_DOMAIN: ((fauna.domain))
FAUNA_SCHEME: ((fauna.scheme))
FAUNA_PORT: ((fauna.port))
- task: schema-tests
file: fauna-shell-repository/concourse/tasks/schema-tests.yml
params:
FAUNA_SECRET: ((cli-test-secret))

- name: release
serial: true
public: false
plan:
- get: fauna-shell-repository
passed: [test]
- task: publish
file: fauna-shell-repository/concourse/tasks/publish.yml
params:
Expand Down