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

chore(build): use garasign to sign linux artifacts (WIP) #1769

Closed
wants to merge 2 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 .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6841,6 +6841,8 @@ functions:
export NODE_JS_VERSION=${node_js_version}
source .evergreen/setup-env.sh
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
export EVERGREEN_EXPANSIONS_PATH="$(cd ../tmp && pwd)/expansions.yaml"
echo "expansions: $EVERGREEN_EXPANSIONS_PATH"
npm run evergreen-release draft
}

Expand Down Expand Up @@ -12954,6 +12956,20 @@ tasks:
- func: release_draft
vars:
node_js_version: "20.9.0"
- name: release_draft_garasign
depends_on:
- name: compile_ts
variant: "*"
# - name: ".smoke-test"
# variant: "*"
commands:
- func: checkout
- func: install
vars:
node_js_version: "20.9.0"
- func: release_draft
vars:
node_js_version: "20.9.0"
- name: release_publish_dry_run
git_tag_only: true
exec_timeout_secs: 86400
Expand Down Expand Up @@ -13894,7 +13910,8 @@ buildvariants:
display_name: "Draft/Publish Release"
run_on: ubuntu2004-small
tasks:
- name: release_draft
- name: release_draft
- name: release_draft_garasign
- name: release_publish_dry_run
- name: release_publish

Expand Down
155 changes: 147 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions packages/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
},
"devDependencies": {
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/monorepo-tools": "^1.1.10",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@mongodb-js/monorepo-tools": "^1.1.10",
"@types/command-exists": "^1.2.0",
"@types/cross-spawn": "^6.0.2",
"@types/download": "^8.0.1",
Expand All @@ -61,9 +61,11 @@
},
"dependencies": {
"@mongodb-js/devtools-github-repo": "^1.0.1",
"@mongodb-js/mongodb-downloader": "^0.2.7",
"@mongodb-js/dl-center": "^1.1.1",
"@mongodb-js/mongodb-downloader": "^0.2.7",
"@mongodb-js/signing-utils": "^0.2.3",
"@octokit/rest": "^17.9.0",
"@types/ssh2": "^1.11.18",
"aws-sdk": "^2.674.0",
"boxednode": "^2.3.0",
"command-exists": "^1.2.9",
Expand Down
Loading