-
Notifications
You must be signed in to change notification settings - Fork 20
68 lines (56 loc) · 1.75 KB
/
ci.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: CI
on: [push, pull_request]
jobs:
job_test_gem:
name: Test in source tree
strategy:
fail-fast: false
matrix:
include:
- os: windows
ruby: "head"
- os: windows
ruby: "2.6"
- os: ubuntu
ruby: "head"
- os: ubuntu
ruby: "3.3"
- os: ubuntu
ruby: "2.6"
- os: macos
ruby: "head"
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby-pkgs@v1
with:
ruby-version: ${{ matrix.ruby }} # passed to ruby/setup-ruby
apt-get: "xpra xserver-xorg-video-dummy libxrandr-dev libfox-1.6-dev libfxscintilla-dev swig" # Ubuntu
brew: "fox swig xquartz" # macOS
mingw: "fox swig gcc" # Windows mingw / mswin /ucrt
- name: Print tool versions
run: |
ruby -v
gcc -v
swig -version
gem env
- name: Bundle install
run: bundle install
- name: Compile extension
run: bundle exec rake compile
- name: Linux Start xpra to enable GLX
if: matrix.os == 'ubuntu'
run: |
xpra --xvfb="Xorg +extension GLX -config `pwd`/test/dummy.xorg.conf -logfile ${HOME}/.xpra/xorg.log" start :9
echo "DISPLAY=:9" >> $GITHUB_ENV
- name: MacOS Start XQuartz
if: matrix.os == 'macos'
run: |
open -a /Applications/Utilities/XQuartz.app
# wait some seconds until XQuartz has started
sleep 10
- name: Run tests
run: bundle exec rake test
- name: Linux Print logs if job failed
if: ${{ failure() && matrix.os == 'ubuntu' }}
run: cat ~/.xpra/*