-
Notifications
You must be signed in to change notification settings - Fork 7
414 lines (373 loc) · 14.8 KB
/
test_fredi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
### https://github.com/actions/upload-artifact
### https://github.blog/changelog/2021-11-10-github-actions-input-types-for-manual-workflows/
### https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows
### https://github.com/r-lib/actions/tree/v2/setup-r-dependencies
### https://docs.github.com/en/actions/using-jobs/using-conditions-to-control-job-execution
### Single line conditional can use ${{}} formulation. Multi-line conditional does not.
### For uploading artifacts:
### "path:" is the output path where Pandoc will write the compiled PDF.
### Note, this should be the same directory as the input paper.md
name: 2a. Test FrEDI Package
on:
workflow_dispatch:
inputs:
do_compare:
type: choice
description: Do you want to compare FrEDI results with those from another branch?
required: true
options:
- no
- yes
ref_branch:
type: string
description: To which branch of FrEDI do you want to compare results)?
default: main
agg_types:
type: choice
description: Aggregate across impact types?
required: true
options:
- no
- yes
dow_results:
type: choice
description: Do you want to generate scenario results for report figures?
required: true
options:
- no
- yes
dow_totals:
type: choice
description: Do you want to create a plot summarizing scenario results for all sectors?
required: true
options:
- no
- yes
dow_appendix:
type: choice
description: Do you want to create sector-specific appendix figures?
required: true
options:
- no
- yes
sector:
type: string
description: Which sectors do you want to run?
default: "all"
workflow_id:
type: string
description: Enter the run ID for the workflow from which to retrieve the scenario results
default: 1
jobs:
compile_data:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
name: Load Package Code
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Send input status
run: |
echo "ref_name = ${{ github.ref_name }}"
echo "ref_branch = ${{ inputs.ref_branch }}"
echo "do_compare = ${{ inputs.do_compare }}"
echo "agg_types = ${{ inputs.agg_types }}"
echo "dow_results = ${{ inputs.dow_results }}"
echo "dow_totals = ${{ inputs.dow_totals }}"
echo "dow_appendix = ${{ inputs.dow_appendix }}"
echo "sector = ${{ inputs.sector }}"
echo "workflow_id = ${{ inputs.workflow_id }}"
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Setup R package dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache: true
cache-version: 1
packages: |
any::tidyverse
any::devtools
any::openxlsx
any::ggpubr
### Download tmp_sysdata.rda from 1. Compile Main FrEDI Data run
- name: Download all artifacts
if: |
inputs.dow_totals == 'true' ||
inputs.dow_appendix == 'true'
id: download-artifact
uses: actions/download-artifact@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ inputs.workflow_id }}
path: .
- name: Check artifacts
# if: ${{ inputs.dow_totals == 'true' || inputs.dow_appendix == 'true' }}
if: |
inputs.dow_totals == 'true' ||
inputs.dow_appendix == 'true'
run: |
echo "dow_totals = ${{ inputs.dow_totals }}"
echo "dow_appendix = ${{ inputs.dow_appendix }}"
echo "dow_totals | dow_appendix = ${{ inputs.dow_appendix == 'true' || inputs.dow_appendix == 'true' }}"
echo "dow_totals | dow_appendix is true. Proceeding with the task."
ls -R ./scenario_results
### Install FrEDI from new branch and get results
### Install FrEDI from ref branch and get results
- name: Test results
if: |
inputs.do_compare == 'true' ||
inputs.dow_results == 'true' ||
inputs.dow_totals == 'true' ||
inputs.dow_appendix == 'true'
run: |
Rscript -e '
### Libraries
require(tidyverse)
require(devtools)
require(openxlsx)
require(ggpubr)
### Arguments
doGenTests <- "${{ inputs.do_compare }}" %in% c("true", "yes")
doScenarios <- "${{ inputs.dow_results }}" %in% c("true", "yes")
doSumFig <- "${{ inputs.dow_totals }}" %in% c("true", "yes")
doAppFig <- "${{ inputs.dow_appendix }}" %in% c("true", "yes")
doFigures <- doSumFig | doAppFig
doTotals <- doSumFig
sectors0 <- "${{ inputs.sector }}"
### Which branches to install
installRef <- doGenTests
installNew <- doGenTests | doScenarios | doFigures
###### Paths ######
### Main repo path, FrEDI project path, scripts path
rPath0 <- ".";
# pPath0 <- rPath0 |> file.path("FrEDI")
pPath0 <- rPath0
### Load scripts and testing functions
sPath0 <- pPath0 |> file.path("scripts")
tPath0 <- pPath0 |> file.path("testing")
sFiles0 <- sPath0 |> list.files(full.names=TRUE)
tFiles0 <- tPath0 |> list.files(full.names=TRUE)
for(file_i in sFiles0){file_i |> source(); rm(file_i)}
for(file_i in tFiles0){file_i |> source(); rm(file_i)}
### Where to save results
oPath0 <- pPath0 |> file.path("data_tests")
oFileNew <- oPath0 |> file.path("newResults.rda")
oFileRef <- oPath0 |> file.path("refResults.rda")
### Check if path exists and, if not, create it
exists0 <- oPath0 |> dir.exists()
if(!exists0) oPath0 |> dir.create(recursive=TRUE)
###### Action Arguments ######
urlRepo <- "https://github.com/USEPA/FrEDI"
newBranch <- "${{ github.ref_name }}"
refBranch <- "${{ inputs.ref_branch }}"
c(newBranch, refBranch) |> print()
aggTypes <- "${{ inputs.agg_types }}" %in% c("true", "yes")
if(aggTypes) {
cAggLvls <- "all"
} else {
cAggLvls <- c("national", "modelaverage", "impactyear")
} ### End if(aggTypes)
###### Compare Results ######
### Compare results between branches
###### ** Install FrEDI from Reference Branch ######
### Install FrEDI from ref branch
if(installRef) {
devtools::install_github(
repo=urlRepo, ref=refBranch,
# subdir="FrEDI",
dependencies=F, upgrade="never", force=T, type="source"
) ### End install_github
} ### End if(installRef)
###### ** Run FrEDI from Reference Branch ######
### Load library, run FrEDI
if(doGenTests) {
library(FrEDI)
dfRef <- run_fredi(aggLevels=cAggLvls)
dfRef |> save(file=oFileRef)
"Finished running FrEDI on " |> paste0(refBranch, " branch.") |> print()
oPath0 |> list.files() |> print()
### Detach FrEDI package
package:FrEDI |> detach(unload=TRUE)
} ### End if(doGenTests)
###### ** Install FrEDI from New Branch ######
### Install FrEDI from new branch
if(installNew) {
devtools::install_github(
repo=urlRepo, ref=newBranch,
dependencies=F, upgrade="never", force=T, type="source"
) ### End install_github
} ### End if(installNew)
###### ** Run FrEDI from New Branch ######
### Load library, run FrEDI
if(doGenTests) {
library(FrEDI)
dfNew <- run_fredi(aggLevels=cAggLvls)
dfNew |> save(file=oFileNew)
"Finished running FrEDI on " |> paste0(newBranch, " branch.") |> print()
oPath0 |> list.files() |> print()
} ### End if(doGenTests)
###### ** Run General Tests ######
### Get test results
if(doGenTests) {
dfTests <- general_fredi_test(
newOutputs = dfNew,
refOutputs = dfRef,
outPath = oPath0
) ### End general_fredi_test
"Finished running general tests." |> print()
oPath0 |> list.files() |> print()
rm(dfTests)
} ### End if(doGenTests)
###### Sectors & Years ######
if(doScenarios | doFigures) {
### Format sector names
sectors0 |> print()
sectors0 <- sectors0 |>
str_split(pattern=",") |> unlist() |>
trimws()
sectors0 |> print()
### Which years to report on for GCM, SLR sectors
gcmYears0 <- c(2010, 2090)
slrYears0 <- c(2050, 2090)
} ### End if(doScenarios | doFigures)
###### Run Scenarios ######
###### ** Setup Scenarios ######
if(doScenarios) {
### CONUS temps
conusTemps <- list(
temps = c(0:10),
tempLabels = c(0:10),
tempType = "conus",
prefix = "Other_Integer"
) ### End list
### Global temps
globalTemps <- list(
temps = c(1.487, 2.198),
tempLabels = c(1.5, 2),
tempType = "global",
prefix = "preI_global"
) ### End list
### Temps list
tempsList <- list(conus=conusTemps, global=globalTemps)
rm(conusTemps, globalTemps)
} ### End if(doScenarios)
###### ** Run Scenarios ######
### aggOnly=Whether to only include sectors for which "includeaggregate==1" in Fig 7 plots
if(doScenarios) {
### Run scenarios
dfResults <- run_constantTempScenarios(
sectors = sectors0,
tempList = tempsList,
gcmYears = gcmYears0,
slrYears = slrYears0,
aggOnly = FALSE,
loadCode = "project",
silent = TRUE ,
testing = FALSE,
fpath = pPath0,
saveFile = TRUE ,
outPath = oPath0,
return = FALSE
) ### End run_constantTempScenarios
"Finished running scenarios..." |> print()
oPath0 |> list.files() |> print()
rm(dfResults)
} ### End if(doScenarios)
###### Create Figures ######
### aggOnly=Whether to only include sectors for which "includeaggregate==1" in Fig 7 plots
# if(doFigures) "Making figures..." |> print()
if(doFigures) {
"Making figures..." |> print()
### Artifact paths
artDir <- pPath0 |> file.path("scenario_results")
gcmName <- "gcm_DOW_scenario_results" |> paste0(".", "rda")
slrName <- "slr_scenario_results" |> paste0(".", "rda")
gcmPath <- artDir |> file.path(gcmName)
slrPath <- artDir |> file.path(slrName)
### Initialize data
gcmData0 <- NULL
slrData0 <- NULL
### Check if files exist
gcmExists <- gcmPath |> file.exists()
slrExists <- slrPath |> file.exists()
anyExist <- c(gcmExists, slrExists) |> any()
oPath0 |> list.files() |> print();
artDir |> list.files() |> print();
c(gcmPath, slrPath) |> print()
### Load data
do_any <- FALSE
### Check if GCM file exists and, if it does, load it
if(gcmExists) {
gcmPath |> load()
gcmData0 <- obj0
rm(obj0)
do_gcm <- !(gcmData0 |> is.null())
do_any <- do_any | do_gcm
} ### End if(gcmExists)
### Check if SLR file exists and, if it does, load it
if(slrExists) {
slrPath |> load()
slrData0 <- obj0
rm(obj0)
do_slr <- !(slrData0 |> is.null())
do_any <- do_any | do_slr
} ### End if(slrExists)
### Whether to run the test
makePlots <- doFigures & do_any
makePlots |> print()
### gcmData=Dataframe with data for GCM sectors
### slrData=Dataframe with data for SLR sectors
if(makePlots) {
### Number of digits for formatting sector names
digits0 <- 16
### Create plots
dfPlots <- create_DOW_plots(
sectors = sectors0,
gcmData = gcmData0,
slrData = slrData0,
gcmYears = gcmYears0,
slrYears = slrYears0,
totals = doTotals,
aggOnly = doTotals,
digits = digits,
silent = TRUE ,
testing = FALSE,
loadCode = "project",
fpath = "." ,
saveFile = TRUE ,
outPath = oPath0,
img_dev = "pdf",
return = FALSE
) ### End create_DOW_plotsfunction
} ### End if(makePlots)
"Finished creating figures..." |> print()
oPath0 |> list.files() |> print()
} ### End if(doFigures)
"got here" |> print()
'
- name: Upload General Tests
if: |
inputs.do_compare == 'true'
uses: actions/upload-artifact@v4
with:
name: general_tests
path: |
./data_tests/*
- name: Upload Scenario Results
if: |
inputs.dow_results == 'true'
uses: actions/upload-artifact@v4
with:
name: scenario_results
path: |
./data_tests/*
- name: Upload Report Figures
if: |
inputs.dow_totals == 'true' ||
inputs.dow_appendix == 'true'
uses: actions/upload-artifact@v4
with:
name: report_figures
path: |
./data_tests/*