kibana/vars/kibanaTeamAssign.groovy
Tiago Costa aa8ec78060
chore(NA): enable yarn prefer offline and local mirror for development (#84124)
* chore(NA): enable --prefer-offline by default

* chore(NA): use prefer offline in the yarnrc

* chore(NA): update kbn pm

* chore(NA): add yarn offline mirror integration

* chore(NA): remove non wanted prune feature due to switching between branches

* chore(NA): re-introduce babel require hook
2020-11-25 00:18:18 +00:00

14 lines
338 B
Groovy

def generateTeamAssignments(teamAssignmentsPath, title) {
kibanaPipeline.bash("""
source src/dev/ci_setup/setup_env.sh
yarn kbn bootstrap
# Build team assignments dat file
node scripts/generate_team_assignments.js --verbose --dest '${teamAssignmentsPath}'
cat '${teamAssignmentsPath}'
""", title)
}
return this