added GDAL extension to R package #38
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: build_R | |
# build for R, skip scala tests and python build | |
on: | |
push: | |
branches: | |
- 'r/**' | |
- 'R/**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
matrix: | |
python: [ 3.10.12 ] | |
numpy: [ 1.22.4 ] | |
gdal: [ 3.4.1 ] | |
spark: [ 3.4.0 ] | |
R: [ 4.2.2 ] | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: build scala with skipping tests | |
uses: ./.github/actions/scala_build | |
with: | |
skip_tests: 'true' | |
- name: build r artefacts | |
uses: ./.github/actions/r_build | |
- name: upload artefacts | |
uses: ./.github/actions/upload_artefacts |