-
Notifications
You must be signed in to change notification settings - Fork 324
101 lines (82 loc) · 3.09 KB
/
active_update_truth_weekly.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
name: (Active) Update hospitilization truth data weekly
on:
workflow_dispatch:
inputs:
skip_zoltar_upload:
description: 'true/false indicating whether to skip Zoltar upload'
required: false
default: 'false'
schedule:
- cron: '0 16 * * 0'
jobs:
upload_zoltar:
if: github.repository_owner == 'reichlab'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.2]
steps:
# - run: sudo apt-get remove ghc-** azure-cli firefox google-cloud-sdk google-chrome-stable hhvm dotnet-sdk-** dotnet-runtime-** moby-** adoptopenjdk-** mongodb-org-** mysql-**
# - run: sudo apt-get autoremove
- name: Free disk space
run: |
df --human-readable
sudo apt clean
docker rmi $(docker image ls --all --quiet)
rm --recursive --force "$AGENT_TOOLSDIRECTORY"
- name: Maximize build space
uses: easimon/maximize-build-space@v4
with:
root-reserve-mb: 4096
swap-size-mb: 4096
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
- name: Check space available
run: df --human-readable
- name: Checkout covid19-forecast-hub repo
uses: actions/checkout@v3
with:
lfs: true
path: covid19-forecast-hub
- name: Checkout LFS objects
run: git lfs checkout
working-directory: ./covid19-forecast-hub
- name: Setup GitHub Action for R language
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install system dependencies
run: sudo apt-get install libudunits2-dev libcurl4-openssl-dev libgdal-dev
- name: Checkout covidData
uses: actions/checkout@v3
with:
repository: reichlab/covidData
token: ${{secrets.GH_TOKEN}}
path: covidData
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install python dependencies
run: pip3 install -r visualization/requirements.txt
working-directory: ./covid19-forecast-hub
- name: Install R dependencies (for covidData + covidHubUtils)
working-directory: ./covid19-forecast-hub
run: Rscript code/R_scripts/install_dependencies.R
env:
GITHUB_PAT: ${{ secrets.GH_TOKEN }}
- run: mkdir ./covidData/data-raw/JHU/
- name: Install covidData
run: make recent_data
working-directory: ./covidData/code/data-processing
- name: Generate truth csv files (Hospitalization)
run: Rscript ./covid19-forecast-hub/code/R_scripts/generate_truth_csvs.R
- name: Push generated files to GitHub
run: bash ./travis/push-gh.sh
working-directory: ./covid19-forecast-hub
env:
GH_TOKEN: ${{secrets.GH_TOKEN}}
- name: Check space available after update
run: df --human-readable