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

add v8-canary builds to www setup #757

Closed
wants to merge 1 commit 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
10 changes: 10 additions & 0 deletions setup/www/resources/config/nightly-builder-v8-canary.json.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"jenkinsToken": "{{ jenkins_token }}",
"jenkinsJobUrl": "https://ci-release.nodejs.org/job/iojs+release",
"jenkinsCrumbUrl": "https://ci-release.nodejs.org/crumbIssuer/api/json",
"githubAuthUser": "{{ github_auth_user }}",
"githubAuthToken": "{{ github_auth_token }}",
"githubOrg": "nodejs",
"githubRepo": "node-v8",
"githubScheme": "https://github.com/",
}

This comment was marked as off-topic.

This comment was marked as off-topic.

This comment was marked as off-topic.

4 changes: 2 additions & 2 deletions setup/www/tasks/tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
dest: /etc/crontab
line: "{{ item }}"
with_items:
- '0 20 * * * dist /usr/bin/nodejs-nightly-builder --type nightly --ref heads/v6.x --config /etc/nightly-builder.json'
- '0 19 * * * dist /usr/bin/nodejs-nightly-builder --type nightly --ref heads/v7.x --config /etc/nightly-builder.json'
- '0 20 * * * dist /usr/bin/nodejs-nightly-builder --type v8-canary --ref heads/canary --config /etc/nightly-builder-v8-canary.json'
- '0 19 * * * dist /usr/bin/nodejs-nightly-builder --type nightly --ref heads/v8.x --config /etc/nightly-builder.json'

This comment was marked as off-topic.

- '0 18 * * * dist /usr/bin/nodejs-nightly-builder --type nightly --ref heads/master --config /etc/nightly-builder.json'
- '1 0 * * * root npm update -g nodejs-latest-linker nodejs-dist-indexer nodejs-nightly-builder >& /dev/null'
tags: tools
2 changes: 2 additions & 0 deletions setup/www/tasks/user.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
- nodejs/rc
- nodejs/release
- nodejs/test
- nodejs/v8-canary
- nodejs/chakracore-nightly
- nodejs/docs
- iojs/next-nightly
- iojs/nightly
Expand Down
12 changes: 12 additions & 0 deletions setup/www/tools/promote/promote_nightly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@ dstdir=$test_dstdir
dirmatch=$test_dirmatch

. ${__dirname}/_promote.sh $site

srcdir=$v8_canary_srcdir
dstdir=$v8_canary_dstdir
dirmatch=$v8_canary_dirmatch

. ${__dirname}/_promote.sh $site

srcdir=$chakracore_nightly_srcdir
dstdir=$chakracore_nightly_dstdir
dirmatch=$chakracore_nightly_dirmatch

. ${__dirname}/_promote.sh $site
8 changes: 8 additions & 0 deletions setup/www/tools/promote/settings
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ test_srcdir=${staging_rootdir}custom
test_dstdir=${dist_rootdir}test
test_dirmatch="-test[0-9]+"

v8_canary_srcdir=${staging_rootdir}custom
v8_canary_dstdir=${dist_rootdir}v8-canary
v8_canary_dirmatch="-v8-canary[0-9]+"

nightly_srcdir=${staging_rootdir}nightly
nightly_dstdir=${dist_rootdir}nightly
nightly_dirmatch=.*

next_nightly_srcdir=${staging_rootdir}next-nightly
next_nightly_dstdir=${dist_rootdir}next-nightly
next_nightly_dirmatch=.*

chakracore_nightly_srcdir=${staging_rootdir}chakracore-nightly
chakracore_nightly_dstdir=${dist_rootdir}chakracore-nightly
chakracore_nightly_dirmatch=.*