-
Notifications
You must be signed in to change notification settings - Fork 140
46 lines (43 loc) · 1.21 KB
/
cruby-bindings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CRuby bindings
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
jobs:
test-all:
runs-on: ubuntu-20.04
steps:
- name: Set up latest ruby head
uses: ruby/setup-ruby@v1
with:
ruby-version: head
bundler: none
- uses: actions/checkout@v4
with:
repository: ruby/ruby
path: ruby/ruby
fetch-depth: 1
- name: Install libraries
run: |
set -x
sudo apt-get update -q || :
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev autoconf ruby
- uses: actions/checkout@v4
with:
path: ruby/prism
fetch-depth: 1
- run: tool/sync_default_gems.rb prism
working-directory: ruby/ruby
- name: Build Ruby
run: |
autoconf
./configure -C --disable-install-doc
make -j2
working-directory: ruby/ruby
- name: make test-all
run: make -j2 -s test-all TESTS="prism --no-retry"
working-directory: ruby/ruby