From f602f9001ad6f4ce981678ac3e52a541e4e235af Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Mon, 7 Jun 2021 22:48:06 +0900 Subject: Add a CI configuration with libyaml 0.1.7 --- .github/workflows/libyaml-0.1.7.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/libyaml-0.1.7.yml (limited to '.github/workflows/libyaml-0.1.7.yml') diff --git a/.github/workflows/libyaml-0.1.7.yml b/.github/workflows/libyaml-0.1.7.yml new file mode 100644 index 0000000..d905619 --- /dev/null +++ b/.github/workflows/libyaml-0.1.7.yml @@ -0,0 +1,35 @@ +name: libyaml-0.1.7 + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + ruby: [ ruby-head, "3.0", 2.7, 2.6, 2.5, 2.4 ] + steps: + - name: Install libraries + run: sudo apt install haveged + - uses: actions/checkout@v2 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + - name: Set up libyaml 0.1.7 + run: | + wget https://pyyaml.org/download/libyaml/yaml-0.1.7.tar.gz + tar xzf yaml-0.1.7.tar.gz + cd yaml-0.1.7 + ./configure --prefix=/tmp/local + make + make install + - name: Install dependencies + run: bundle install + - name: Compile + run: rake compile -- --with-libyaml-dir=/tmp/local + - name: Run test + run: rake + - name: Install gem + run: rake install -- cgit v1.2.3