R builds #672
This file contains 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: R builds | |
on: | |
workflow_dispatch: | |
inputs: | |
platforms: | |
description: | | |
Comma-separated list of platforms. Default is "all" to use all platforms. | |
required: false | |
default: 'all' | |
type: string | |
schedule: | |
- cron: '55 2 * * *' | |
permissions: | |
contents: write | |
jobs: | |
setup-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
platforms: ${{ steps.setup-matrix.outputs.platforms }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up matrix of R builds | |
id: setup-matrix | |
run: | | |
platforms=$(python tests/get-platforms.py ${{ github.event.inputs.platforms }}) | |
echo "platforms=$platforms" >> $GITHUB_OUTPUT | |
package-files: | |
needs: setup-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: ${{ fromJson(needs.setup-matrix.outputs.platforms) }} | |
runs-on: ubuntu-latest | |
name: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build base image | |
run: docker compose build ${{ matrix.platform }} | |
- name: Build R | |
run: docker compose up ${{ matrix.platform }} | |
- name: Copy package | |
run: | | |
pkg=$(find integration -name "*.deb" -or -name "*.rpm") | |
cp "$pkg" . | |
ls -l "$pkg" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
*-rstudio-*.deb | |
*-rstudio-*.rpm | |
name: "Latest builds" | |
tag_name: latest |