Skip to content

chore(ci): update ruby setup actions for ruby 3.3.4 #16

chore(ci): update ruby setup actions for ruby 3.3.4

chore(ci): update ruby setup actions for ruby 3.3.4 #16

Workflow file for this run

name: Alpine Musl - arm64 - build from dockerhub builder
# Broken on GitHub Actions with QEMU
on:
workflow_dispatch:
push:
branches: [ main, alpine ]
# pull_request:
# branches: [ main ]
env:
PKG_DATE: 20240726
jobs:
make-alpine-arm64:
strategy:
matrix:
os: [ubuntu-latest]
ruby-version: [3.1.6, 3.2.4, 3.3.4]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: "Set up Ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: package
run: |
docker run --privileged --rm tonistiigi/binfmt --install all
cd alpine
rake
ls
env:
ARCHITECTURES: "arm64"
RUBY_VERSIONS: ${{ matrix.ruby-version }}
- name: package gems
run: ./scripts/package-gems.sh
env:
PLATFORM: alpine
- name: 'Upload Artifact - linux arm64'
uses: actions/upload-artifact@v3
with:
name: traveling-ruby-${{ env.PKG_DATE }}-${{ matrix.ruby-version }}-linux-musl-arm64.tar.gz
path: alpine/traveling-ruby*.tar.gz
- name: test
run: |
cd alpine
rake test_docker
env:
ARCHITECTURES: "arm64"
RUBY_VERSIONS: ${{ matrix.ruby-version }}