Skip to content

Commit

Permalink
-Update GHA to work around rlas issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermorganwall committed Jul 27, 2024
1 parent 8406489 commit 81e44e1
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/rhub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,19 @@ jobs:
config: ${{ fromJson(needs.setup.outputs.containers) }}
container:
image: ${{ matrix.config.container }}
env:
RGL_USE_NULL: true

steps:
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- name: Install rlas from GitHub
run: |
R -e "install.packages('remotes')"
R -e "remotes::install_github('r-lidar/rlas')"
- uses: r-hub/actions/setup-deps@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
Expand All @@ -74,6 +80,8 @@ jobs:
fail-fast: false
matrix:
config: ${{ fromJson(needs.setup.outputs.platforms) }}
env:
RGL_USE_NULL: true

steps:
- uses: r-hub/actions/checkout@v1
Expand All @@ -85,11 +93,15 @@ jobs:
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- name: Install rlas from GitHub
run: |
R -e "install.packages('remotes')"
R -e "remotes::install_github('r-lidar/rlas')"
- uses: r-hub/actions/setup-deps@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/actions/run-check@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
token: ${{ secrets.RHUB_TOKEN }}

0 comments on commit 81e44e1

Please sign in to comment.