Skip to content

ci: Prefix artifacts names with insecure_ as CI cannot be trusted #74

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

Merged
merged 1 commit into from
Oct 29, 2021
Merged
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
14 changes: 10 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,10 @@ task:
env:
<< : *CIRRUS_EPHEMERAL_WORKER_TEMPLATE_ENV
FILE_ENV: "./ci/test/00_setup_env_win64.sh"
bitcoin_qt_artifacts:
path: "ci/scratch/build/bitcoin-x86_64-w64-mingw32/release/bitcoin-qt.exe"
copy_artifacts_script:
- cp ci/scratch/build/bitcoin-x86_64-w64-mingw32/release/bitcoin-qt.exe insecure_win_gui.exe
insecure_win_gui_artifacts:
path: "insecure_win_gui.exe"

#task:
# name: '32-bit + dash [gui] [CentOS 8]'
Expand Down Expand Up @@ -282,8 +284,12 @@ task:
env:
<< : *CIRRUS_EPHEMERAL_WORKER_TEMPLATE_ENV
FILE_ENV: "./ci/test/00_setup_env_mac.sh"
macos_bitcoin_qt_artifacts:
path: "ci/scratch/build/bitcoin-x86_64-apple-darwin19/src/qt/bitcoin-qt"
copy_artifacts_script:
- cp ci/scratch/build/bitcoin-x86_64-apple-darwin19/src/qt/bitcoin-qt insecure_mac_gui
- tar -czf insecure_mac_gui.tar.gz insecure_mac_gui
insecure_mac_gui_artifacts:
path: "insecure_mac_gui.tar.gz"
type: "application/gzip"

task:
name: 'macOS 11 native [gui] [no depends]'
Expand Down