summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-02-22 20:58:46 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-02-22 20:58:46 +0900
commit36242edd9e41e22d83850d380f5e8687621eb73a (patch)
tree4a1d81bf46be01b978ad43346c75243fd4ef6a4a /.github
parenta692251ea029d2c8bbc9d9263a63cb82ce72b6cc (diff)
downloadpsych-36242edd9e41e22d83850d380f5e8687621eb73a.tar.gz
Added libyaml for ubuntu and macos
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 60a4c0b..790843f 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -11,6 +11,8 @@ jobs:
ruby: [ "3.0", 2.7, 2.6, 2.5, 2.4 ]
steps:
- uses: actions/checkout@v2
+ - name: Install libraries
+ run: brew install libyaml
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 0cbee6f..10a69ea 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -11,7 +11,7 @@ jobs:
ruby: [ ruby-head, "3.0", 2.7, 2.6, 2.5, 2.4 ]
steps:
- name: Install libraries
- run: sudo apt install haveged
+ run: sudo apt install haveged libyaml-dev
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1