Skip to content

Commit

Permalink
add poll at launch for git pollers
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-roos committed Jul 18, 2023
1 parent 2a6a9f0 commit 184d4fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configuration/admin/admin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ c['change_source'].append(changes.GitPoller(
"https://github.com/aws4embeddedlinux/meta-aws.git",
workdir=gitpoller_workdir,
branches=meta_aws_supported_releases_next,
pollAtLaunch=True,
pollinterval=3600,
pollRandomDelayMin=300,
pollRandomDelayMax=3500))
Expand All @@ -310,6 +311,7 @@ c['change_source'].append(changes.GitPoller(
"https://github.com/yoctoproject/poky.git",
workdir=gitpoller_workdir,
branches=meta_aws_supported_releases,
pollAtLaunch=True,
pollinterval=3600,
pollRandomDelayMin=300,
pollRandomDelayMax=3500))
Expand All @@ -318,6 +320,7 @@ c['change_source'].append(changes.GitPoller(
"https://github.com/openembedded/meta-openembedded.git",
workdir=gitpoller_workdir,
branches=meta_aws_supported_releases,
pollAtLaunch=True,
pollinterval=3600,
pollRandomDelayMin=300,
pollRandomDelayMax=3500))
Expand Down Expand Up @@ -439,6 +442,7 @@ c['change_source'].append(changes.GitPoller(
"https://github.com/aws4embeddedlinux/meta-aws-demos.git",
workdir=gitpoller_workdir,
branches=True,
pollAtLaunch=True,
pollinterval=600,
pollRandomDelayMin=300,
pollRandomDelayMax=500))
Expand Down
1 change: 1 addition & 0 deletions lib/buildbot/buildbot-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export class BuildBotServer extends cdk.Stack {
vpc: props.vpc,
internetFacing: true,
// securityGroup: buildbotSg,
idleTimeout: Duration.seconds(600),
});

const loadBalancerAccessLogs = new Bucket(this, 'LoadBalancerLogs', {});
Expand Down

0 comments on commit 184d4fb

Please sign in to comment.