Further increase data length for seasonal models to 240 points #16
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
| # Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
| # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
| on: | |
| push: | |
| branches: [main, master] | |
| tags: ['*'] | |
| merge_group: | |
| workflow_dispatch: | |
| name: pkgdown | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pkgdown: | |
| runs-on: ubuntu-latest | |
| # Only restrict concurrency for non-PR jobs | |
| concurrency: | |
| group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1.11' | |
| - name: Cache Julia packages | |
| uses: julia-actions/cache@v2 | |
| with: | |
| cache-name: julia-cache-artifacts | |
| cache-compiled: true | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: any::pkgdown, local::. | |
| needs: website | |
| - uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| miniconda-version: "latest" | |
| activate-environment: "" | |
| - name: Link conda for Julia | |
| run: | | |
| mkdir -p "$HOME/.julia/conda/3" | |
| ln -sf "$CONDA" "$HOME/.julia/conda/3/x86_64" | |
| shell: bash | |
| - name: Install JuliaCall dependencies | |
| run: | | |
| export R_HOME=$(R RHOME) | |
| julia -e 'ENV["R_HOME"] = raw"'"$R_HOME"'"; using Pkg; Pkg.add("Suppressor"); Pkg.add("RCall"); Pkg.build("RCall")' | |
| shell: bash | |
| - name: Preload Julia's libunwind (Linux workaround) | |
| run: | | |
| # Workaround for JuliaCall issue #238 | |
| # Ubuntu's libunwind 1.6.2 has bugs. Preload Julia's own libunwind instead. | |
| JULIA_LIBUNWIND=$(find $(julia -e 'print(Sys.BINDIR)')/../lib/julia -name "libunwind.so.8*" 2>/dev/null | head -1) | |
| if [ -n "$JULIA_LIBUNWIND" ]; then | |
| echo "Preloading Julia's libunwind: $JULIA_LIBUNWIND" | |
| echo "LD_PRELOAD=$JULIA_LIBUNWIND" >> $GITHUB_ENV | |
| else | |
| echo "Warning: Julia's libunwind not found, may segfault" | |
| fi | |
| shell: bash | |
| - name: Setup Julia dependencies | |
| run: | | |
| forecastbaselines::setup_ForecastBaselines(verbose = TRUE) | |
| shell: Rscript {0} | |
| - name: Build site | |
| run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | |
| shell: Rscript {0} | |
| - name: Deploy to GitHub pages 🚀 | |
| if: github.event_name != 'pull_request' | |
| uses: JamesIves/github-pages-deploy-action@v4.7.4 | |
| with: | |
| clean: false | |
| branch: gh-pages | |
| folder: docs | |
| single-commit: true |