This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 pkt chocolate biscuits, crushed up - food processor works well | |
1 tin condensed milk | |
170gm icing sugar | |
115 gm cocoa | |
115 gm melted cooled copha | |
2 or 3 tablespoons of rum | |
Mix it up, add more icing sugar if it's too wet, then roll into balls and cover with sprinkles (no coconut, or else!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# TODO: | |
- [ ] Not sure about "@antora/types" because there's no physical module for that. Maybe there should be a | |
types-only package within the antora lerna tree? | |
- [ ] Get Dan to vet names for types, and fill in any props I've missed - particularly AntoraFile | |
- [ ] Get Dan to confirm what's optional vs nullable vs required | |
- [ ] Do we want to use namespaces for things like the objects within a Playbook? | |
Or just code the structures in? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('A') { | |
steps{ | |
echo '1' | |
sleep 5 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('Alpha') { | |
parallel { | |
stage('Blue') { | |
steps { | |
script { | |
println "XXXX" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('T1 Triggers Bug') { | |
parallel { | |
// Removing T1-S1 completely does not trigger bug | |
stage('T1-S1') { | |
stages { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage("Alpha") { | |
steps { | |
echo "From Alpha" | |
} | |
} | |
stage('Tall') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage ("Alpha") { | |
echo "From Alpha" | |
} | |
stage ("Bravo-stack") { | |
parallel( | |
alpha: { | |
echo 'Bravo-alpha' | |
}, | |
bravo: { | |
echo 'Bravo-bravo' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Example showing structure: | |
[ | |
{ | |
"name": "Alpha", | |
"children": [ | |
{ | |
"name": "Homer", | |
"children": [], | |
"state": "not_built", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo extends Error { | |
type: string; | |
constructor(type: string, message: string) { | |
super(message); | |
// Clean up the changes made by super() | |
this.constructor = Foo; | |
if ((Object as any).setPrototypeOf) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
stage('Alpha') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Bravo') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Charlie') { |
NewerOlder