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

connector proxy - source connectors #409

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
19 changes: 18 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
- run: make install-tools
- run: go mod download
- run: make rust-test
- run: make go-test-ci
- run: make rust-binaries

- name: Upload Binaries
Expand Down Expand Up @@ -193,6 +192,11 @@ jobs:
- name: Install protobuf compiler (it's not already included in CI runner)
run: sudo apt install -y libprotobuf-dev protobuf-compiler

# We require a minimal Go version of 1.17.
- uses: actions/setup-go@v2
with:
go-version: "1.17.3"

- name: Install rust toolchain
run: rustup show
- run: make extra-ci-runner-setup
Expand Down Expand Up @@ -280,6 +284,19 @@ jobs:
-o /home/runner/work/flow/flow/.build/package/bin/gazette \
-o /home/runner/work/flow/flow/.build/package/bin/sops

- name: make go-test-ci
run: |
make go-test-ci \
-o /home/runner/work/flow/flow/.build/package/bin/etcd \
-o /home/runner/work/flow/flow/.build/package/bin/flowctl \
-o /home/runner/work/flow/flow/.build/package/bin/flowctl-go \
-o /home/runner/work/flow/flow/.build/package/bin/flow-connector-proxy \
-o /home/runner/work/flow/flow/.build/package/bin/flow-network-proxy \
-o /home/runner/work/flow/flow/.build/package/bin/flow-parser \
-o /home/runner/work/flow/flow/.build/package/bin/flow-schemalate \
-o /home/runner/work/flow/flow/.build/package/bin/gazette \
-o /home/runner/work/flow/flow/.build/package/bin/sops

- name: make end-to-end-test
run: |
make end-to-end-test \
Expand Down
Loading