Skip to content

Commit

Permalink
Remove beta release steps (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnwpedro committed May 22, 2024
1 parent 948cd79 commit e714cf6
Showing 1 changed file with 0 additions and 79 deletions.
79 changes: 0 additions & 79 deletions concourse/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ resources:
source:
url: ((slack-webhook))

- name: beta.git
type: git
icon: github
source:
uri: https://github.com/fauna/fauna-python
branch: beta

- name: fauna-python-repository
type: git
icon: github
Expand Down Expand Up @@ -56,15 +49,12 @@ groups:
- set-self
- test
- release
- test-beta
- release-beta

jobs:
- name: set-self
plan:
- get: fauna-python-repository
trigger: true
- get: beta.git
- set_pipeline: self
file: fauna-python-repository/concourse/pipeline.yml

Expand Down Expand Up @@ -143,72 +133,3 @@ jobs:
- put: fauna-python-repository-docs
params:
repository: fauna-python-repository-updated-docs

- name: test-beta
serial: true
plan:
- get: beta.git
passed:
- set-self
- get: testtools-repo
- get: testtools-image

- load_var: git-commit
reveal: true
file: beta.git/.git/ref

- in_parallel:
fail_fast: false
steps:
- task: unit-and-integration-tests
file: beta.git/concourse/tasks/tests.yml
privileged: true

- task: aws-lambda-tests
image: testtools-image
file: testtools-repo/fauna-driver-platform-tests/concourse/tasks/python-aws-lambda-tests.yml
params:
GIT_COMMIT: ((.:git-commit))
FAUNA_SECRET: ((drivers-platform-tests/fauna-secret))
AWS_LAMBDA_ROLE_ARN: ((drivers-platform-tests/aws-lambda-role-arn))
AWS_ACCESS_KEY_ID: ((drivers-platform-tests/aws-access-key-id))
AWS_SECRET_ACCESS_KEY: ((drivers-platform-tests/aws-secret-key))

- task: vercel-tests
image: testtools-image
file: testtools-repo/fauna-driver-platform-tests/concourse/tasks/python-vercel-tests.yml
params:
GIT_COMMIT: ((.:git-commit))
FAUNA_SECRET: ((drivers-platform-tests/fauna-secret))
VERCEL_TOKEN: ((drivers-platform-tests/vercel-token))

- task: query-limits-tests
privileged: true
file: beta.git/concourse/tasks/query-limits-tests.yml
params:
QUERY_LIMITS_DB: limited
QUERY_LIMITS_COLL: limitCollection


- name: release-beta
serial: true
public: false
plan:
- get: beta.git
passed:
- set-self

- task: build
file: beta.git/concourse/tasks/build.yml
input_mapping: {fauna-python-repository: beta.git }

- task: publish
file: beta.git/concourse/tasks/publish.yml
input_mapping: {fauna-python-repository: beta.git }
params:
TWINE_USERNAME: ((pypi-username))
TWINE_PASSWORD: ((pypi-password))
on_success:
put: notify
params:
text_file: slack-message/publish

0 comments on commit e714cf6

Please sign in to comment.