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

CI: Leave out unnecessary build files from binary artifact #9135

Merged
merged 5 commits into from
Sep 25, 2024
Merged
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion .github/workflows/_build-and-test-locally.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,10 @@ jobs:
${cov_prefix} cargo nextest run $CARGO_FLAGS $CARGO_FEATURES -E 'package(remote_storage)' -E 'test(test_real_azure)'

- name: Install postgres binaries
run: cp -a pg_install /tmp/neon/pg_install
run: |
mkdir /tmp/neon/pg_install
# Use tar to copy files matching the pattern, preserving the paths in the destionation
tar cv pg_install/v* pg_install/build/*/src/test/regress/*.so | tar xv -C /tmp/neon/pg_install
hlinnaka marked this conversation as resolved.
Show resolved Hide resolved

- name: Upload Neon artifact
uses: ./.github/actions/upload
Expand Down
Loading