Skip to content

Commit

Permalink
PIP-209: Removed C++/Python clients from main repo (apache#17881)
Browse files Browse the repository at this point in the history
* PIP-209: Removed C++/Python clients from main repo

* Removed python directory from Docekrfile

* Fixed python client version argument scoping

* Fixed handling of pulsar.functions.serde
  • Loading branch information
merlimat authored Sep 30, 2022
1 parent 5f07943 commit f3c547b
Show file tree
Hide file tree
Showing 463 changed files with 27 additions and 70,723 deletions.
2 changes: 0 additions & 2 deletions .github/changes-filter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ docs:
- '**/*.md'
tests:
- added|modified: '**/src/test/java/**/*.java'
cpp:
- 'pulsar-client-cpp/**'
need_owasp:
- 'pom.xml'
- '**/pom.xml'
Expand Down
259 changes: 0 additions & 259 deletions .github/workflows/ci-cpp-build.yaml

This file was deleted.

4 changes: 1 addition & 3 deletions .github/workflows/ci-go-functions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
runs-on: ubuntu-20.04
outputs:
docs_only: ${{ steps.check_changes.outputs.docs_only }}
cpp_only: ${{ steps.check_changes.outputs.cpp_only }}
steps:
- name: checkout
uses: actions/checkout@v2
Expand All @@ -56,7 +55,6 @@ jobs:
id: check_changes
run: |
echo "::set-output name=docs_only::${{ fromJSON(steps.changes.outputs.all_count) == fromJSON(steps.changes.outputs.docs_count) && fromJSON(steps.changes.outputs.docs_count) > 0 }}"
echo "::set-output name=cpp_only::${{ fromJSON(steps.changes.outputs.all_count) == fromJSON(steps.changes.outputs.cpp_count) && fromJSON(steps.changes.outputs.cpp_count) > 0 }}"
- name: Check if the PR has been approved for testing
if: ${{ steps.check_changes.outputs.docs_only != 'true' && github.repository == 'apache/pulsar' && github.event_name == 'pull_request' }}
Expand All @@ -68,7 +66,7 @@ jobs:
check-style:
needs: changed_files_job
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' && needs.changed_files_job.outputs.cpp_only != 'true' }}
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
name: Go ${{ matrix.go-version }} Functions style check
runs-on: ubuntu-20.04
strategy:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/pulsar-ci-flaky.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
runs-on: ubuntu-20.04
outputs:
docs_only: ${{ steps.check_changes.outputs.docs_only }}
cpp_only: ${{ steps.check_changes.outputs.cpp_only }}
changed_tests: ${{ steps.changes.outputs.tests_files }}
steps:
- name: checkout
Expand All @@ -58,7 +57,6 @@ jobs:
id: check_changes
run: |
echo "::set-output name=docs_only::${{ fromJSON(steps.changes.outputs.all_count) == fromJSON(steps.changes.outputs.docs_count) && fromJSON(steps.changes.outputs.docs_count) > 0 }}"
echo "::set-output name=cpp_only::${{ fromJSON(steps.changes.outputs.all_count) == fromJSON(steps.changes.outputs.cpp_count) && fromJSON(steps.changes.outputs.cpp_count) > 0 }}"
- name: Check if the PR has been approved for testing
if: ${{ steps.check_changes.outputs.docs_only != 'true' && github.repository == 'apache/pulsar' && github.event_name == 'pull_request' }}
Expand All @@ -73,7 +71,7 @@ jobs:
name: Flaky tests suite
runs-on: ubuntu-20.04
timeout-minutes: 100
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' && needs.changed_files_job.outputs.cpp_only != 'true' }}
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' != 'true' }}
steps:
- name: checkout
uses: actions/checkout@v2
Expand Down
Loading

0 comments on commit f3c547b

Please sign in to comment.