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

🎉 Updated ci performance test sh script #8772

Merged
merged 19 commits into from
Dec 14, 2021
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c55f8f4
updated ci performance test sh script
andriikorotkov Dec 10, 2021
0936d6e
updated ci performance test sh script
andriikorotkov Dec 10, 2021
4576cdc
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 13, 2021
bf8b04d
set all params to one arg
andriikorotkov Dec 13, 2021
44ce7a7
set all params to one arg
andriikorotkov Dec 13, 2021
9fe0591
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 13, 2021
993c05f
set all params to one arg
andriikorotkov Dec 13, 2021
9aec23a
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 13, 2021
456585c
set all params to one arg
andriikorotkov Dec 13, 2021
c4998ce
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 13, 2021
b360e79
set all params to one arg
andriikorotkov Dec 13, 2021
a2221ab
set all params to one arg
andriikorotkov Dec 13, 2021
48f05f3
set all params to one arg
andriikorotkov Dec 13, 2021
e6b3f99
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 13, 2021
6cf24aa
set all params to one arg
andriikorotkov Dec 14, 2021
c253bce
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 14, 2021
71aecf9
set all params to one arg
andriikorotkov Dec 14, 2021
0940ab3
Merge branch 'master' of github.com:airbytehq/airbyte into akorotkov/…
andriikorotkov Dec 14, 2021
b310fb6
set all params to one arg
andriikorotkov Dec 14, 2021
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
5 changes: 4 additions & 1 deletion .github/workflows/test-performance-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ jobs:
id: regex
uses: AsasInnab/regex-action@v1
with:
regex_pattern: "^((connectors|bases)/)?[a-zA-Z0-9-_]+(\\|cpulimit=\\d\\|memorylimit=\\d{1,3}(MB|GB))?(\\|memorylimit=\\d{1,3}(MB|GB)|\\|cpulimit=\\d)?$"
# regex_pattern: "^((connectors|bases)/)?[a-zA-Z0-9-_]+(\\|cpulimit=\\d\\|memorylimit=\\d{1,3}(MB|GB))?(\\|memorylimit=\\d{1,3}(MB|GB)|\\|cpulimit=\\d)?$"
regex_pattern: "^((connectors|bases)/)?[a-zA-Z0-9-_]+$"
regex_flags: "i" # required to be set for this plugin
search_string: ${{ github.event.inputs.connector }}
- name: Test_1
run: echo "Variable -> ${{ steps.regex.outputs.first_match }} "
- name: Test_2
run: echo "Variable -> ${{ github.event.inputs.connector }} "
- name: Test_3
run: echo "Variable -> ${{ github.event.inputs.cpulimit }} "
- name: Validate input workflow format
if: steps.regex.outputs.first_match != github.event.inputs.connector
run: echo "The connector provided has an invalid format!" && exit 1
Expand Down