-
Notifications
You must be signed in to change notification settings - Fork 0
182 lines (153 loc) · 4.75 KB
/
build.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: build
on:
push:
branches: [ main ]
paths-ignore:
- '*.adoc'
pull_request:
workflow_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
ruby-version: [ '2.7', '3.0', '3.1' ]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@master
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
# https://github.com/microsoft/vcpkg/issues/15931
# no good solution :(
- name: Workaround for vcpkg
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install gperf
- run: bundle exec rake
build:
name: build ${{ matrix.os }}, ${{ matrix.ruby-version }}, ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
platform: any
ruby-version: '2.7'
- os: ubuntu-latest
platform: x86_64-linux
ruby-version: '2.7'
- os: windows-latest
platform: x64-mingw32
ruby-version: '2.7'
- os: windows-latest
platform: x64-mingw-ucrt
ruby-version: '3.1'
- os: macos-latest
platform: x86_64-darwin
ruby-version: '2.7'
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@master
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Workaround for vcpkg
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install gperf
- run: bundle exec rake gem:native:${{ matrix.platform }}
- uses: actions/upload-artifact@v3
with:
name: pkg
path: pkg/*.gem
cross-build:
name: build ${{ matrix.os }}, ${{ matrix.ruby-version }}, ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
platform: aarch64-linux
ruby-version: '2.7'
- os: macos-latest
platform: arm64-darwin
ruby-version: '2.7'
steps:
- uses: actions/checkout@v3
- name: Install Ubuntu packages
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu binutils-aarch64-linux-gnu gperf
- name: Install Ruby
uses: ruby/setup-ruby@master
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Build native extension
run: bundle exec rake gem:native:${{ matrix.platform }}
- uses: actions/upload-artifact@v3
with:
name: pkg
path: pkg/*.gem
test-build:
needs: [ build, cross-build ]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
ruby-version: [ '2.7', '3.0', '3.1' ]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@master
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: actions/download-artifact@v3
with:
name: pkg
path: pkg
- name: Install binary gem
run: gem install -b pkg/emf2svg-$(ruby -I lib -r emf2svg/version -e "puts Emf2svg::VERSION")-$(ruby -e "puts RUBY_PLATFORM.sub(/darwin\d{2}$/, 'darwin')").gem
# MacOS with have something like arm64-darwin19, others just aarch64-linux
- name: Test conversion
run: |
ruby -remf2svg -e "puts File.write('output.svg', Emf2svg.from_file('spec/examples/image1.emf'), mode: 'wb')"
test-build-any:
needs: [ build, cross-build ]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
ruby-version: [ '2.7', '3.0', '3.1' ]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@master
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: actions/download-artifact@v3
with:
name: pkg
path: pkg
- name: Workaround for vcpkg
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install gperf
- name: Install native gem
run: gem install -b pkg/emf2svg-$(ruby -I lib -r emf2svg/version -e "puts Emf2svg::VERSION").gem
- name: Test conversion
run: |
ruby -remf2svg -e "puts File.write('output.svg', Emf2svg.from_file('spec/examples/image1.emf'), mode: 'wb')"