File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 7777 cd tmp
7878 ruby test/run.rb
7979
80+ host-ibm :
81+ if : github.repository == 'ruby/fiddle'
82+ name : ${{ matrix.os }}
83+ runs-on : ${{ matrix.os }}
84+ strategy :
85+ fail-fast : false
86+ matrix :
87+ os :
88+ - ubuntu-24.04-ppc64le
89+ - ubuntu-24.04-s390x
90+
91+ steps :
92+ - uses : actions/checkout@v5
93+
94+ - name : Set up Ruby
95+ run : |
96+ sudo apt-get update
97+ sudo apt-get install ruby-full bundler libffi-dev
98+
99+ - run : sudo bundle install --jobs $(nproc)
100+
101+ - run : rake compile
102+
103+ - run : ruby -Ilib test/run.rb
104+
105+ - run : sudo rake install
106+
107+ - name : Run test against installed gem
108+ run : |
109+ ruby -run -e mkdir -- -p tmp/
110+ ruby -run -e cp -- -pr test/ tmp/
111+ cd tmp
112+ ruby test/run.rb
113+
80114 docker :
81115 name : >-
82116 ${{ matrix.service }}
You can’t perform that action at this time.
0 commit comments