possibly this works for building ruby binding

pull/500/head
Todd Fisher 2 years ago
parent 673ad053e8
commit d1a2145cfc
No known key found for this signature in database
GPG Key ID: 15A1619895B1FB4A

@ -14,11 +14,13 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install build-essential sudo apt-get install build-essential
sudo apt-get install libsdl2-dev sudo apt-get install libsdl2-dev
sudo apt-get install ruby-dev
- name: Build - name: Build
run: | run: |
make make
make stream make stream
cd bindings/ruby/ext && ruby extconf.rb && make
macOS-latest: macOS-latest:
runs-on: macOS-latest runs-on: macOS-latest
@ -30,12 +32,13 @@ jobs:
- name: Dependencies - name: Dependencies
run: | run: |
brew update brew update
brew install sdl2 brew install sdl2 ruby
- name: Build - name: Build
run: | run: |
make make
make stream make stream
cd bindings/ruby/ext && ruby extconf.rb && make
ubuntu-latest-gcc: ubuntu-latest-gcc:
runs-on: ubuntu-latest runs-on: ubuntu-latest

Loading…
Cancel
Save