Skip to content

Commit b0b79ea

Browse files
committed
Reorder steps
This prevents blowing away the directory to which we write log files.
1 parent 8ec35c4 commit b0b79ea

10 files changed

Lines changed: 147 additions & 147 deletions

.github/workflows/linux_benchmark.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,20 @@ jobs:
120120
# Define the sequence of job steps...
121121
steps:
122122

123+
# Checkout the repository:
124+
- name: 'Checkout repository'
125+
uses: actions/checkout@v2
126+
with:
127+
# Specify whether to remove untracked files before checking out the repository:
128+
clean: false
129+
130+
# Limit clone depth to the most recent 100 commits:
131+
fetch-depth: 100
132+
133+
# Specify whether to download Git-LFS files:
134+
lfs: false
135+
timeout-minutes: 10
136+
123137
# Initialize log files:
124138
- name: 'Initialize log files'
125139
run: |
@@ -190,20 +204,6 @@ jobs:
190204
npm --version
191205
timeout-minutes: 5
192206

193-
# Checkout the repository:
194-
- name: 'Checkout repository'
195-
uses: actions/checkout@v2
196-
with:
197-
# Specify whether to remove untracked files before checking out the repository:
198-
clean: false
199-
200-
# Limit clone depth to the most recent 100 commits:
201-
fetch-depth: 100
202-
203-
# Specify whether to download Git-LFS files:
204-
lfs: false
205-
timeout-minutes: 10
206-
207207
# Perform install sequence:
208208
- name: 'Perform install sequence'
209209
run: |

.github/workflows/linux_examples.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,20 @@ jobs:
120120
# Define the sequence of job steps...
121121
steps:
122122

123+
# Checkout the repository:
124+
- name: 'Checkout repository'
125+
uses: actions/checkout@v2
126+
with:
127+
# Specify whether to remove untracked files before checking out the repository:
128+
clean: false
129+
130+
# Limit clone depth to the most recent 100 commits:
131+
fetch-depth: 100
132+
133+
# Specify whether to download Git-LFS files:
134+
lfs: false
135+
timeout-minutes: 10
136+
123137
# Initialize log files:
124138
- name: 'Initialize log files'
125139
run: |
@@ -190,20 +204,6 @@ jobs:
190204
npm --version
191205
timeout-minutes: 5
192206

193-
# Checkout the repository:
194-
- name: 'Checkout repository'
195-
uses: actions/checkout@v2
196-
with:
197-
# Specify whether to remove untracked files before checking out the repository:
198-
clean: false
199-
200-
# Limit clone depth to the most recent 100 commits:
201-
fetch-depth: 100
202-
203-
# Specify whether to download Git-LFS files:
204-
lfs: false
205-
timeout-minutes: 10
206-
207207
# Perform install sequence:
208208
- name: 'Perform install sequence'
209209
run: |

.github/workflows/linux_test.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,20 @@ jobs:
116116
# Define the sequence of job steps...
117117
steps:
118118

119+
# Checkout the repository:
120+
- name: 'Checkout repository'
121+
uses: actions/checkout@v2
122+
with:
123+
# Specify whether to remove untracked files before checking out the repository:
124+
clean: false
125+
126+
# Limit clone depth to the most recent 100 commits:
127+
fetch-depth: 100
128+
129+
# Specify whether to download Git-LFS files:
130+
lfs: false
131+
timeout-minutes: 10
132+
119133
# Initialize log files:
120134
- name: 'Initialize log files'
121135
run: |
@@ -186,20 +200,6 @@ jobs:
186200
npm --version
187201
timeout-minutes: 5
188202

189-
# Checkout the repository:
190-
- name: 'Checkout repository'
191-
uses: actions/checkout@v2
192-
with:
193-
# Specify whether to remove untracked files before checking out the repository:
194-
clean: false
195-
196-
# Limit clone depth to the most recent 100 commits:
197-
fetch-depth: 100
198-
199-
# Specify whether to download Git-LFS files:
200-
lfs: false
201-
timeout-minutes: 10
202-
203203
# Perform install sequence:
204204
- name: 'Perform install sequence'
205205
run: |

.github/workflows/linux_test_cov.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,20 @@ jobs:
120120
# Define the sequence of job steps...
121121
steps:
122122

123+
# Checkout the repository:
124+
- name: 'Checkout repository'
125+
uses: actions/checkout@v2
126+
with:
127+
# Specify whether to remove untracked files before checking out the repository:
128+
clean: false
129+
130+
# Limit clone depth to the most recent 100 commits:
131+
fetch-depth: 100
132+
133+
# Specify whether to download Git-LFS files:
134+
lfs: false
135+
timeout-minutes: 10
136+
123137
# Initialize log files:
124138
- name: 'Initialize log files'
125139
run: |
@@ -190,20 +204,6 @@ jobs:
190204
npm --version
191205
timeout-minutes: 5
192206

193-
# Checkout the repository:
194-
- name: 'Checkout repository'
195-
uses: actions/checkout@v2
196-
with:
197-
# Specify whether to remove untracked files before checking out the repository:
198-
clean: false
199-
200-
# Limit clone depth to the most recent 100 commits:
201-
fetch-depth: 100
202-
203-
# Specify whether to download Git-LFS files:
204-
lfs: false
205-
timeout-minutes: 10
206-
207207
# Perform install sequence:
208208
- name: 'Perform install sequence'
209209
run: |

.github/workflows/linux_test_npm_install.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,20 @@ jobs:
114114
# Define the sequence of job steps...
115115
steps:
116116

117+
# Checkout the repository:
118+
- name: 'Checkout repository'
119+
uses: actions/checkout@v2
120+
with:
121+
# Specify whether to remove untracked files before checking out the repository:
122+
clean: false
123+
124+
# Limit clone depth to the most recent 100 commits:
125+
fetch-depth: 100
126+
127+
# Specify whether to download Git-LFS files:
128+
lfs: false
129+
timeout-minutes: 10
130+
117131
# Initialize log files:
118132
- name: 'Initialize log files'
119133
run: |
@@ -183,20 +197,6 @@ jobs:
183197
npm --version
184198
timeout-minutes: 5
185199

186-
# Checkout the repository:
187-
- name: 'Checkout repository'
188-
uses: actions/checkout@v2
189-
with:
190-
# Specify whether to remove untracked files before checking out the repository:
191-
clean: false
192-
193-
# Limit clone depth to the most recent 100 commits:
194-
fetch-depth: 100
195-
196-
# Specify whether to download Git-LFS files:
197-
lfs: false
198-
timeout-minutes: 10
199-
200200
# Run the build task:
201201
- name: 'Run build task'
202202
run: |

.github/workflows/macos_benchmark.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,20 @@ jobs:
119119
# Define the sequence of job steps...
120120
steps:
121121

122+
# Checkout the repository:
123+
- name: 'Checkout repository'
124+
uses: actions/checkout@v2
125+
with:
126+
# Specify whether to remove untracked files before checking out the repository:
127+
clean: false
128+
129+
# Limit clone depth to the most recent 100 commits:
130+
fetch-depth: 100
131+
132+
# Specify whether to download Git-LFS files:
133+
lfs: false
134+
timeout-minutes: 10
135+
122136
# Initialize log files:
123137
- name: 'Initialize log files'
124138
run: |
@@ -176,20 +190,6 @@ jobs:
176190
npm --version
177191
timeout-minutes: 5
178192

179-
# Checkout the repository:
180-
- name: 'Checkout repository'
181-
uses: actions/checkout@v2
182-
with:
183-
# Specify whether to remove untracked files before checking out the repository:
184-
clean: false
185-
186-
# Limit clone depth to the most recent 100 commits:
187-
fetch-depth: 100
188-
189-
# Specify whether to download Git-LFS files:
190-
lfs: false
191-
timeout-minutes: 10
192-
193193
# Perform install sequence:
194194
- name: 'Perform install sequence'
195195
run: |

.github/workflows/macos_test.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,20 @@ jobs:
115115
# Define the sequence of job steps...
116116
steps:
117117

118+
# Checkout the repository:
119+
- name: 'Checkout repository'
120+
uses: actions/checkout@v2
121+
with:
122+
# Specify whether to remove untracked files before checking out the repository:
123+
clean: false
124+
125+
# Limit clone depth to the most recent 100 commits:
126+
fetch-depth: 100
127+
128+
# Specify whether to download Git-LFS files:
129+
lfs: false
130+
timeout-minutes: 10
131+
118132
# Initialize log files:
119133
- name: 'Initialize log files'
120134
run: |
@@ -172,20 +186,6 @@ jobs:
172186
npm --version
173187
timeout-minutes: 5
174188

175-
# Checkout the repository:
176-
- name: 'Checkout repository'
177-
uses: actions/checkout@v2
178-
with:
179-
# Specify whether to remove untracked files before checking out the repository:
180-
clean: false
181-
182-
# Limit clone depth to the most recent 100 commits:
183-
fetch-depth: 100
184-
185-
# Specify whether to download Git-LFS files:
186-
lfs: false
187-
timeout-minutes: 10
188-
189189
# Perform install sequence:
190190
- name: 'Perform install sequence'
191191
run: |

.github/workflows/macos_test_cov.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,20 @@ jobs:
119119
# Define the sequence of job steps...
120120
steps:
121121

122+
# Checkout the repository:
123+
- name: 'Checkout repository'
124+
uses: actions/checkout@v2
125+
with:
126+
# Specify whether to remove untracked files before checking out the repository:
127+
clean: false
128+
129+
# Limit clone depth to the most recent 100 commits:
130+
fetch-depth: 100
131+
132+
# Specify whether to download Git-LFS files:
133+
lfs: false
134+
timeout-minutes: 10
135+
122136
# Initialize log files:
123137
- name: 'Initialize log files'
124138
run: |
@@ -176,20 +190,6 @@ jobs:
176190
npm --version
177191
timeout-minutes: 5
178192

179-
# Checkout the repository:
180-
- name: 'Checkout repository'
181-
uses: actions/checkout@v2
182-
with:
183-
# Specify whether to remove untracked files before checking out the repository:
184-
clean: false
185-
186-
# Limit clone depth to the most recent 100 commits:
187-
fetch-depth: 100
188-
189-
# Specify whether to download Git-LFS files:
190-
lfs: false
191-
timeout-minutes: 10
192-
193193
# Perform install sequence:
194194
- name: 'Perform install sequence'
195195
run: |

.github/workflows/macos_test_npm_install.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,20 @@ jobs:
113113
# Define the sequence of job steps...
114114
steps:
115115

116+
# Checkout the repository:
117+
- name: 'Checkout repository'
118+
uses: actions/checkout@v2
119+
with:
120+
# Specify whether to remove untracked files before checking out the repository:
121+
clean: false
122+
123+
# Limit clone depth to the most recent 100 commits:
124+
fetch-depth: 100
125+
126+
# Specify whether to download Git-LFS files:
127+
lfs: false
128+
timeout-minutes: 10
129+
116130
# Initialize log files:
117131
- name: 'Initialize log files'
118132
run: |
@@ -169,20 +183,6 @@ jobs:
169183
npm --version
170184
timeout-minutes: 5
171185

172-
# Checkout the repository:
173-
- name: 'Checkout repository'
174-
uses: actions/checkout@v2
175-
with:
176-
# Specify whether to remove untracked files before checking out the repository:
177-
clean: false
178-
179-
# Limit clone depth to the most recent 100 commits:
180-
fetch-depth: 100
181-
182-
# Specify whether to download Git-LFS files:
183-
lfs: false
184-
timeout-minutes: 10
185-
186186
# Run the build task:
187187
- name: 'Run build task'
188188
run: |

0 commit comments

Comments
 (0)