Skip to content

Commit

Permalink
Debugging Rcpp build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereckmezquita committed Jul 8, 2024
1 parent 3aa1536 commit 82b3e9d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
with:
use-public-rspm: true

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev
- name: Install R package dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand All @@ -34,6 +39,22 @@ jobs:
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Build package
run: |
R CMD build .
R CMD check --no-manual --as-cran *tar.gz
- name: Show check results
if: always()
run: |
find . -name "00check.log" -exec cat {} \;
- name: Show error logs
if: failure()
run: |
find . -name "*.Rout" -exec cat {} \;
find . -name "*.fail" -exec cat {} \;
- name: Deploy to branch
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 82b3e9d

Please sign in to comment.