Skip to content

Commit

Permalink
QE-16322 remove deprecated ci (#509)
Browse files Browse the repository at this point in the history
## PR Type
What kind of change does this PR introduce?

<!-- Please check the one that applies to this PR using "x". -->
- [ ] Bugfix
- [ ] Feature
- [ ] Code style update (formatting)
- [ ] Refactoring (no functional changes)
- [x] CI related changes
- [x] Other... Please describe:

## What is the current behavior?

Issue Number: https://dominodatalab.atlassian.net/browse/QE-16322

## What is the new behavior?
Delete Old CI that was unused
PR's will have a template

## Does this PR introduce a breaking change?
- [ ] Yes
- [x] No

<!-- If this PR contains a breaking change, please describe the impact
and migration path for existing applications below. -->

## Other information
  • Loading branch information
ddl-cedricyoung authored Jul 29, 2024
1 parent 76e54a1 commit 36a3436
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 29 deletions.
28 changes: 0 additions & 28 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ workflows:
- test-chrome
- test-edge
- test-firefox
- publish:
filters:
branches:
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+/

jobs:
pre-commit:
Expand Down Expand Up @@ -203,25 +197,3 @@ jobs:
echo "Running sonarqube analysis... $SONAR_CMD"
$SONAR_CMD
publish:
docker:
- image: cimg/python:<<pipeline.parameters.python_version>>
steps:
- checkout
- run:
name: install cucu dependencies
command: |
set +eo pipefail
python -m virtualenv --upgrade-embed-wheels
poetry install --no-ansi
- run:
name: build the cucu python package
command: poetry build
- run:
name: Publish to private PyPI repository
command: |
set +eo pipefail
poetry config repositories.private ${PUBLISH_REPOSITORY}
poetry config http-basic.private ${PUBLISH_USERNAME} ${PUBLISH_PASSWORD}
poetry publish -r private
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## PR Type
What kind of change does this PR introduce?

<!-- Please check the one that applies to this PR using "x". -->
- [ ] Bugfix
- [ ] Feature
- [ ] Code style update (formatting)
- [ ] Refactoring (no functional changes)
- [ ] CI related changes
- [ ] Other... Please describe:

## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->

Issue Number: https://dominodatalab.atlassian.net/browse/

## What is the new behavior?

## Does this PR introduce a breaking change?
- [ ] Yes
- [ ] No

<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->

## Other information
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project closely adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.199.0
- chore - remove deprecated CI
- chore - add PR template

## 0.198.0
- chore - add sonarqube
- chore - refactor circle config (config-drive executor, embed commands, move workflows up)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cucu"
version = "0.198.0"
version = "0.199.0"
license = "MIT"
description = "Easy BDD web testing"
authors = ["Domino Data Lab <[email protected]>"]
Expand Down

0 comments on commit 36a3436

Please sign in to comment.