Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
Naming improvements
  • Loading branch information
gokhangulbiz committed Aug 28, 2023
1 parent 142a631 commit 82c97a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: install_extension
name: setup_extension
inputs:
pg_major:
required: false
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Build & Test
run-name: Build & Test - ${{ github.event_name }} ${{ github.event.pull_request.title || github.ref_name }}
run-name: Build & Test - ${{ github.event.pull_request.title || github.ref_name }}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
- build
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
- name: Run Test
run: gosu circleci make -C src/test/${{ matrix.suite }} ${{ matrix.make }}
timeout-minutes: 20
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
parallel: [1,2,3,4,5,6]
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
- name: Test arbitrary configs
run: |-
TESTS=$(src/test/regress/citus_tests/print_test_names.py)
Expand Down Expand Up @@ -248,10 +248,10 @@ jobs:
- uses: actions/[email protected]
with:
path: "."
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
with:
pg_major: "${{ env.old_pg_major }}"
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
with:
pg_major: "${{ env.new_pg_major }}"
- name: Install and test postgres upgrade
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
- build
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
with:
skip_installation: true
- name: Install and test citus upgrade
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
- name: Run minimal tests
run: |-
tests="${{ needs.test-flakyness-pre.outputs.tests }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flaky_test_debugging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
matrix: ${{ fromJson(needs.prepare_parallelization_matrix.outputs.json) }}
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/install_extension"
- uses: "./.github/actions/setup_extension"
- name: Run minimal tests
run: |-
gosu circleci src/test/regress/citus_tests/run_test.py ${{ env.test }} --repeat ${{ env.runs }} --use-base-schedule --use-whole-schedule-line
Expand Down

0 comments on commit 82c97a0

Please sign in to comment.