-
Notifications
You must be signed in to change notification settings - Fork 324
Travis CI
Khoale1096 edited this page May 29, 2020
·
8 revisions
We automate a lot of this project with the help of Travis CI.
- Make an account on travis-ci.com NOT travis-ci.org.
- Link the account to your GitHub Account
- Go to: https://travis-ci.com/github/reichlab/covid19-forecast-hub
Travis first looks at the .travis.yml file in the root directory and spins up a VM with Travis servers to perform a series of tasks that we determine.
The mandatory Travis set up file which is run at every build automatically. In our case, we specify additional scripts to execute with script: ./travis-main.sh
.
- Configures the VM operating system, dependencies, and cached libraries
- Runs the main execution script:
script: ./travis-main.sh
A bash script that executes a series of scripts to:
-
Validate the incoming data (
source ./travis/validate-data.sh
)- Runs at:
every build on master
- Runs at:
-
Update the truth data (
bash ./travis/update-truth.sh
)- Runs at:
cron job @ 6:30am
- Runs at:
-
Upload forecasts to zoltar (
bash ./travis/upload-to-zoltar.sh
)- Runs at:
every merged pull request
- Runs at:
-
Update already validated files (
cp ./code/validation/locally_validated_files.csv ./code/validation/validated_files.csv
)- Runs at:
every build except PRs
- Runs at:
-
Test uploading forecasts to zoltar manually
- Runs at:
any commit with "test zoltar upload" in the message
- Runs at:
-
Test uploading truth to zoltar manually
- Runs at:
any commit with "test truth" in the message
- Runs at:
All scripts run on Travis can be found in ./travis/
- Home
- Submitting Forecasts
- Data Validation
- Truth Data
- Baseline model
- Weekly ensemble release
- Developer