This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaning up repository branches and configurations (#1009)
* refactor circle ci and functional-tests Signed-off-by: GuillaumeFalourd <[email protected]> * update assert2.txt functional test Signed-off-by: GuillaumeFalourd <[email protected]> * update assert6.txt functional test Signed-off-by: GuillaumeFalourd <[email protected]> * Update CONTRIBUTING.md * Update CONTRIBUTING.md * Update CONTRIBUTING.md * remove merge-qa option Signed-off-by: GuillaumeFalourd <[email protected]> * update test-core-parent-commands.yml file Signed-off-by: GuillaumeFalourd <[email protected]> * update Makefile Signed-off-by: GuillaumeFalourd <[email protected]> * remove config beta Signed-off-by: GuillaumeFalourd <[email protected]> * Lint Job Signed-off-by: maurineimirandazup <[email protected]> * Run on all pushes Signed-off-by: maurineimirandazup <[email protected]> * Unit Test Signed-off-by: maurineimirandazup <[email protected]> * Upload to codecov Signed-off-by: maurineimirandazup <[email protected]> * Change cov file Signed-off-by: maurineimirandazup <[email protected]> * Change master to main Signed-off-by: maurineimirandazup <[email protected]> * env: migrate ci from release generation from circleci to actions Signed-off-by: lucas.dittrich <[email protected]> * Update CONTRIBUTING.md Co-authored-by: maurineimirandazup <[email protected]> Co-authored-by: lucas.dittrich <[email protected]>
- Loading branch information
1 parent
c1ea15c
commit 3220f54
Showing
50 changed files
with
859 additions
and
1,609 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,2 @@ | ||
merge_branch: | ||
enable: true # Enable merge branch with comment | ||
branches: ['qa'] # Branches enabled to merge with comment | ||
users: [ | ||
'brunasilvazup', | ||
'fabianofernandeszup', | ||
'fernandobelettizup', | ||
'guillaumefalourd', | ||
'henriquemoraeszup', | ||
'kaduartur', | ||
'lucasdittrichzup', | ||
'maurineimirandazup', | ||
'rodrigomedeirosf' | ||
] # Users enabled to merge with comment | ||
|
||
issue_project: | ||
enable: false # Enable issue to project when opening a new issue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
function metric_server { | ||
|
||
VERSION=$RELEASE_VERSION | ||
|
||
if expr "$VERSION" : '.*qa.*' >/dev/null; then | ||
echo "https://ritchie-metrics.devdennis.zup.io/v2/metrics" | ||
elif expr "$VERSION" : '.*stg.*' >/dev/null; then | ||
echo "https://ritchie-metrics.stgdennis.zup.io/v2/metrics" | ||
elif expr "$VERSION" : '^[0-9]\+' >/dev/null; then | ||
echo "https://ritchie-metrics.prddennis.zup.io/v2/metrics" | ||
else | ||
echo "" | ||
fi | ||
|
||
} | ||
|
||
function version { | ||
export RELEASE_VERSION=$(curl https://commons-repo.ritchiecli.io/stable.txt) | ||
} | ||
|
||
function caller { | ||
|
||
elif expr "$1" : "metric_server" >/dev/null; then | ||
version | ||
metric_server | ||
else | ||
echo "Unable to process params" | ||
exit 1 | ||
fi | ||
|
||
} | ||
|
||
caller "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,5 @@ | |
"type": "" | ||
} | ||
], | ||
"postinst": "packaging/scripts/postinst.sh" | ||
} | ||
"postinst": ".github/scripts/postinst.sh" | ||
} |
File renamed without changes.
Oops, something went wrong.