Add FreeBSD to CI matrix #546
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: re2 Tests | |
concurrency: | |
group: "${{github.workflow}}-${{github.sha}}" | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
RUBYOPT: "--enable-frozen-string-literal --debug-frozen-string-literal --debug" | |
jobs: | |
build-cruby-gem: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ports/archives | |
key: archives-ubuntu-${{hashFiles('ext/re2/extconf.rb')}} | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- run: ./scripts/test-gem-build gems ruby | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cruby-gem | |
path: gems | |
build-precompiled-gems: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- "aarch64-linux" | |
- "arm-linux" | |
- "arm64-darwin" # github actions does not support this runtime as of 2022-12, but let's build anyway | |
- "x64-mingw-ucrt" | |
- "x64-mingw32" | |
- "x86-linux" | |
- "x86-mingw32" # github actions does not support this runtime as of 2022-12, but let's build anyway | |
- "x86_64-darwin" | |
- "x86_64-linux" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ports/archives | |
key: archives-ubuntu-${{hashFiles('ext/re2/extconf.rb')}} | |
- run: | | |
docker run --rm -v "$(pwd):/re2" -w /re2 \ | |
"ghcr.io/rake-compiler/rake-compiler-dock-image:1.4.0-mri-${{matrix.platform}}" \ | |
./scripts/test-gem-build gems ${{matrix.platform}} ${{github.ref_type}} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "cruby-${{matrix.platform}}-gem" | |
path: gems | |
compile-and-test-system-re2-versions: | |
needs: ["build-cruby-gem"] | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
ruby: ["3.3", "2.6"] # oldest and newest" | |
libre2: | |
- version: "20150501" | |
soname: 0 | |
- version: "20200302" | |
soname: 1 | |
- version: "20200303" | |
soname: 6 | |
- version: "20200501" | |
soname: 7 | |
- version: "20200706" | |
soname: 8 | |
- version: "20201101" | |
soname: 9 | |
- version: "20221201" | |
soname: 10 | |
- version: "20230701" | |
soname: 11 | |
needs_abseil: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove any existing libre2 installation | |
run: sudo apt-get remove -y libre2-dev libre2-5 | |
- name: Install Abseil for newer re2 releases | |
if: ${{ matrix.libre2.needs_abseil }} | |
run: | | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository ppa:savoury1/build-tools | |
sudo apt-get install -y libabsl-dev | |
- name: Download and install specific release of libre2 | |
run: | | |
curl -Lo libre2-dev.deb https://github.com/mudge/re2-ci/releases/download/v2/libre2-dev_${{ matrix.libre2.version }}_amd64.deb | |
sudo dpkg -i libre2-dev.deb | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{ matrix.ruby }}" | |
bundler-cache: true | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-gem | |
path: gems | |
- run: ./scripts/test-gem-install gems --enable-system-libraries | |
compile-and-test-vendored-dependencies: | |
needs: ["build-cruby-gem"] | |
strategy: | |
fail-fast: false | |
matrix: | |
runs-on: ["ubuntu-latest", "macos-latest"] | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
sys: ["enable", "disable"] | |
include: | |
- ruby: "2.6" | |
runs-on: "windows-2019" | |
pin-pkgconf: true # can be removed once pkgconf 2.2.0 is available | |
- ruby: "2.7" | |
runs-on: "windows-2019" | |
pin-pkgconf: true | |
- ruby: "3.0" | |
runs-on: "windows-2019" | |
pin-pkgconf: true | |
- ruby: "3.1" | |
runs-on: "windows-2022" | |
pin-pkgconf: true | |
- ruby: "3.2" | |
runs-on: "windows-2022" | |
pin-pkgconf: true | |
- ruby: "3.3" | |
runs-on: "windows-2022" | |
pin-pkgconf: true | |
runs-on: ${{matrix.runs-on}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby-pkgs@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
apt-get: libre2-dev | |
brew: re2 | |
mingw: re2 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-gem | |
path: gems | |
- name: Install pkgconf 2.1.0 | |
run: | | |
pacman -Qs pkgconf | |
curl --remote-name-all https://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-pkgconf-1~2.1.0-1-any.pkg.tar.zst https://repo.msys2.org/mingw/ucrt64/mingw-w64-ucrt-x86_64-pkgconf-1~2.1.0-1-any.pkg.tar.zst | |
pacman -U --noconfirm mingw-w64-x86_64-pkgconf-1~2.1.0-1-any.pkg.tar.zst mingw-w64-ucrt-x86_64-pkgconf-1~2.1.0-1-any.pkg.tar.zst | |
pkg-config --version | |
if: matrix.requires-pkgconf-pin | |
- run: ./scripts/test-gem-install gems --${{ matrix.sys }}-system-libraries | |
shell: bash | |
compile-and-test-vendored-dependencies-with-system-install: | |
needs: ["build-cruby-gem"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install RE2 | |
run: sudo apt-get install -y libre2-dev | |
- uses: ruby/setup-ruby@v1 | |
id: setup-ruby | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-gem | |
path: gems | |
- name: "Link libre2 into Ruby's lib directory" | |
run: ln -s /usr/lib/x86_64-linux-gnu/libre2.so ${{ steps.setup-ruby.outputs.ruby-prefix }}/lib/libre2.so | |
- run: ./scripts/test-gem-install gems | |
compile-and-test-on-freebsd: | |
needs: ["build-cruby-gem"] | |
strategy: | |
fail-fast: false | |
matrix: | |
sys: ["enable", "disable"] | |
runs-on: ubuntu-latest | |
env: | |
CC: clang | |
CXX: clang++ | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-gem | |
path: gems | |
- uses: vmactions/freebsd-vm@v1 | |
with: | |
envs: CC CXX | |
usesh: true | |
copyback: false | |
prepare: pkg install -y ruby devel/ruby-gems sysutils/rubygem-bundler devel/pkgconf devel/cmake devel/llvm shells/bash devel/re2 | |
run: ./scripts/test-gem-install gems --${{ matrix.sys }}-system-libraries | |
test-precompiled-aarch64-linux: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-aarch64-linux-gem | |
path: gems | |
- name: Enable execution of multi-architecture containers by QEMU | |
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | |
- run: | | |
docker run --rm -v "$(pwd):/re2" -w /re2 \ | |
--platform=linux/arm64/v8 \ | |
ruby:${{matrix.ruby}} \ | |
./scripts/test-gem-install ./gems | |
test-precompiled-arm-linux: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-arm-linux-gem | |
path: gems | |
- name: enable execution of multi-architecture containers by qemu | |
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | |
- run: | | |
docker run --rm -v "$(pwd):/re2" -w /re2 \ | |
--platform=linux/arm/v7 \ | |
ruby:${{matrix.ruby}} \ | |
./scripts/test-gem-install ./gems | |
test-precompiled-x64-mingw-ucrt: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["3.1", "3.2", "3.3"] | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: MSP-Greg/setup-ruby-pkgs@v1 | |
with: | |
ruby-version: "${{matrix.ruby}}" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-x64-mingw-ucrt-gem | |
path: gems | |
- run: ./scripts/test-gem-install gems | |
shell: bash | |
test-precompiled-x64-mingw32: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0"] | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{matrix.ruby}}" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-x64-mingw32-gem | |
path: gems | |
- run: ./scripts/test-gem-install gems | |
shell: bash | |
test-precompiled-x86-linux: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-x86-linux-gem | |
path: gems | |
- name: Enable execution of multi-architecture containers by QEMU | |
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | |
- run: | | |
docker run --rm -v "$(pwd):/re2" -w /re2 \ | |
--platform=linux/386 \ | |
ruby:${{matrix.ruby}} \ | |
./scripts/test-gem-install ./gems | |
test-precompiled-x86_64-linux: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{matrix.ruby}}" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-x86_64-linux-gem | |
path: gems | |
- run: ./scripts/test-gem-install gems | |
test-precompiled-x86_64-darwin: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{matrix.ruby}}" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-x86_64-darwin-gem | |
path: gems | |
- run: ./scripts/test-gem-install gems | |
test-precompiled-x86_64-alpine: | |
needs: ["build-precompiled-gems"] | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
container: | |
image: "ruby:${{matrix.ruby}}-alpine" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: cruby-x86_64-linux-gem | |
path: gems | |
- run: apk add bash libstdc++ gcompat | |
- run: ./scripts/test-gem-install gems |