Install KiteModels (latest release) using Julia 1.11 #50
This file contains hidden or 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: Install KiteModels (latest release) | |
| on: | |
| schedule: | |
| - cron: '0 1 * * *' # Runs every day at 1am UTC | |
| workflow_dispatch: # Allows manual trigger from the Actions tab | |
| jobs: | |
| run-script: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install matplotlib | |
| run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi | |
| shell: bash | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install mesa | |
| run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev | |
| - uses: julia-actions/install-juliaup@v2 | |
| with: | |
| channel: '1' | |
| - name: Run script install_kitemodels_main | |
| run: | | |
| DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' ./scripts/install_kitemodels |