Trigger zoltar upload #6610
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
name: Trigger zoltar upload | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: 'Trigger' | |
schedule: | |
- cron: '0 */6 * * *' | |
- cron: '30 2 * * *' # 10:30 EDT or 9:30 EST | |
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: 512 | |
swap-size-mb: 1024 | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
- name: Check space available | |
run: df --human-readable | |
- uses: actions/checkout@v3 | |
- name: Check space available after checkout | |
run: df --human-readable | |
# - name: Use Node.js ${{ matrix.node-version }} | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.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 | |
# - run: npm install | |
- run: pip3 install -r visualization/requirements.txt | |
env: | |
CFLAGS: "-Wno-deprecated-declarations -Wno-unreachable-code" | |
- run: bash travis/upload_zoltar_master.sh | |
env: | |
Z_USERNAME: ${{ secrets.Z_USERNAME}} | |
Z_PASSWORD: ${{ secrets.Z_PASSWORD}} | |
GH_TOKEN: ${{secrets.GH_TOKEN}} |