fix indentation #10
Workflow file for this run
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 Ruby gems | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci-data: | |
runs-on: ubuntu-latest | |
outputs: | |
result: ${{ steps.fetch.outputs.result }} | |
steps: | |
- id: fetch | |
uses: oxidize-rb/actions/fetch-ci-data@main | |
with: | |
supported-ruby-platforms: | | |
exclude: [] | |
stable-ruby-versions: | | |
exclude: [head] | |
cross_gems: | |
name: Cross compile gems | |
needs: ci-data | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ruby-sdk | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-platform: ${{ fromJSON(needs.ci-data.outputs.result).supported-ruby-platforms }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
cargo-cache: true | |
cargo-vendor: true | |
cache-version: v2-${{ matrix.ruby-platform }} | |
- name: Set vars | |
id: vars | |
run: | | |
echo "rb-sys-version=$(bundle exec ruby -rrb_sys -e 'puts RbSys::VERSION')" >> $GITHUB_OUTPUT | |
- uses: "ruby/setup-ruby@v1" | |
with: | |
ruby-version: "3.2" | |
bundler-cache: true | |
- name: Configure environment | |
shell: bash | |
id: configure | |
run: | | |
: Configure environment | |
echo "RB_SYS_DOCK_UID=$(id -u)" >> $GITHUB_ENV | |
echo "RB_SYS_DOCK_GID=$(id -g)" >> $GITHUB_ENV | |
rb_sys_version="$((grep rb_sys Gemfile.lock | head -n 1 | grep -oE '[0-9]+\.[0-9]+\.[0-9]+') || (gem info rb_sys --remote | grep -oE '[0-9]+\.[0-9]+\.[0-9]+') || echo "latest")" | |
rb_sys_dock_cache_dir="$HOME/.cache/rb-sys-$rb_sys_version" | |
mkdir -p "$rb_sys_dock_cache_dir" | |
echo "RB_SYS_DOCK_CACHE_DIR=$rb_sys_dock_cache_dir" >> $GITHUB_ENV | |
echo "rb_sys_version=$rb_sys_version" >> $GITHUB_OUTPUT | |
- name: Setup caching | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.RB_SYS_DOCK_CACHE_DIR }} | |
ruby-sdk/tmp/rb-sys-dock/${{ matrix.ruby-platform }}/target | |
key: rb-sys-dock-v0-${{ matrix.ruby-platform }}-${{ hashFiles('**/Gemfile.lock', '**/Cargo.lock') }} | |
save-always: true | |
restore-keys: | | |
rb-sys-dock-v0-${{ matrix.ruby-platform }}- | |
- name: Install cargo-cache | |
uses: oxidize-rb/actions/cargo-binstall@v1 | |
id: install-cargo-cache | |
with: | |
crate: cargo-cache | |
version: 0.8.3 | |
strategies: quick-install | |
- name: Clean the cargo cache | |
uses: oxidize-rb/actions/post-run@v1 | |
with: | |
run: cargo-cache --autoclean | |
cwd: ruby-sdk | |
always: true | |
- name: Setup rb-sys | |
shell: bash | |
working-directory: ruby-sdk | |
run: | | |
version="${{ steps.configure.outputs.rb_sys_version }}" | |
echo "Installing rb_sys@$version" | |
if [ "$version" = "latest" ]; then | |
gem install rb_sys | |
else | |
gem install rb_sys -v $version | |
fi | |
- name: Build gem | |
shell: bash | |
env: | |
INPUT_RUBY_VERSIONS: ${{ join(fromJSON(needs.ci-data.outputs.result).stable-ruby-versions, ', ') }} | |
INPUT_TAG: "" | |
INPUT_PLATFORM: "${{ matrix.ruby-platform }}" | |
INPUT_PRE_SCRIPT: "" | |
INPUT_POST_SCRIPT: "" | |
run: | | |
: Compile gem | |
set -x | |
args=() | |
args+=("--platform") | |
args+=("$INPUT_PLATFORM") | |
if [ "$INPUT_RUBY_VERSIONS" != "default" ]; then | |
args+=("--ruby-versions") | |
args+=("$INPUT_RUBY_VERSIONS") | |
fi | |
if [ "$INPUT_TAG" != "default" ]; then | |
args+=("--tag") | |
args+=("$INPUT_TAG") | |
fi | |
rb-sys-dock "${args[@]}" --build |