We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64adbf commit 6ea871eCopy full SHA for 6ea871e
1 file changed
.github/workflows/build.yaml
@@ -36,6 +36,14 @@ jobs:
36
37
- uses: r-lib/actions/setup-pandoc@v2
38
39
+ - name: Configure pak and setup-r action to use manylinux_2_28
40
+ if: startsWith(matrix.config.os, 'ubuntu') && matrix.config.r != 'devel'
41
+ run: |
42
+ # Override PPM repo and do not autodetect the distro (setup-r action env var)
43
+ echo "RSPM=https://p3m.dev/cran/__linux__/manylinux_2_28/latest" >> $GITHUB_ENV
44
+ # Disable automatic system requirements installation since it is unnecessary (pak env var)
45
+ echo "PKG_SYSREQS=FALSE" >> $GITHUB_ENV
46
+
47
- uses: r-lib/actions/setup-r@v2
48
with:
49
r-version: ${{ matrix.config.r }}
0 commit comments