all the rubies, plus all the arches #31
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: MacOS arm64 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
PKG_DATE: 20241122 | |
PLATFORM: osx | |
ARCHITECTURES: arm64 | |
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer | |
jobs: | |
make-osx-arm64: | |
strategy: | |
matrix: | |
os: [macos-14] | |
# ruby-version: [3.0.7] # Pre 3.1.0 builds with openssl 1.1.1 | |
ruby-version: [3.1.6, 3.2.6, 3.3.6] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: download osx arm64 runtime | |
run: ./scripts/download-osx-runtime.sh | |
env: | |
RUBY_VERSIONS: ${{ matrix.ruby-version }} | |
- name: build arm64 | |
run: | | |
ls /Applications/Xcode* | |
cd osx | |
rake stash_conflicting_paths | |
rake --trace | |
rake unstash_conflicting_paths | |
ls | |
env: | |
RUBY_VERSIONS: ${{ matrix.ruby-version }} | |
# - name: package osx arm64 runtime | |
# run: ./scripts/package-osx-runtime.sh | |
# env: | |
# RUBY_VERSIONS: ${{ matrix.ruby-version }} | |
# - name: 'Upload Runtime - osx arm64' | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: osx-runtime-arm64-gha-openssl_1_1.tar.gz | |
# path: osx/osx-runtime-*.tar.gz | |
- name: package gems | |
run: ./scripts/package-gems.sh | |
env: | |
PLATFORM: osx | |
- name: 'Upload Artifact- osx arm64' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: traveling-ruby-${{ env.PKG_DATE }}-${{ matrix.ruby-version }}-osx-arm64.tar.gz | |
path: osx/traveling-ruby*.tar.gz | |
- name: test | |
run: | | |
cd osx | |
rake test | |
env: | |
RUBY_VERSIONS: ${{ matrix.ruby-version }} |