Skip to content

Commit

Permalink
Add a github action to build binaries for macos-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
aursiber committed Mar 15, 2024
1 parent c2fb3fe commit bd92830
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build-bin-macOS-M1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help

on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: build-macOS-M1

jobs:
build-bin-macOS-M1:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-arm64, r: 'release'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
extra-packages: any::rcmdcheck, any::XML
needs: check
# See https://github.com/r-lib/actions/issues/559 for the XML issue

- name: Build
run: |
install.packages("pkgbuild")
pkgbuild::build(".", binary = TRUE)
shell: Rscript {0}

- uses: actions/upload-artifact@v3
with:
name: binaries-for-mac-M1
path: /Users/runner/work/ade4/ade4_*.tgz

0 comments on commit bd92830

Please sign in to comment.