Skip to content

Add --enable-static option to link icu4c libraries statically #17

Add --enable-static option to link icu4c libraries statically

Add --enable-static option to link icu4c libraries statically #17

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [macos]
ruby: [ '3.2', '3.3' ]
compile_opt: [""]
include:
- ruby: "3.3"
compile_opt: "ENABLE_STATIC=1"
steps:
- name: icu4c
run: brew install icu4c
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests with compile_opt: ${{ matrix.compile_opt }}, rubyopt: ${{ matrix.rubyopt }}

Check failure on line 30 in .github/workflows/macos.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macos.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
run: bundle exec ${{ matrix.compile_opt }} rake RUBYOPT="${{ matrix.rubyopt }}"