-
Notifications
You must be signed in to change notification settings - Fork 31
146 lines (129 loc) · 4.62 KB
/
build-gems.yml
File metadata and controls
146 lines (129 loc) · 4.62 KB
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
name: Build Gems
on:
push:
branches:
- main
- "releases/*"
permissions:
contents: read
actions: write
jobs:
build-platform-gems:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# TODO(cretz): Enable x64-mingw-ucrt if we can figure out Windows issue, see
# https://github.com/temporalio/sdk-ruby/issues/172
rubyPlatform: ["aarch64-linux", "aarch64-linux-musl", "x86_64-linux", "x86_64-linux-musl", "arm64-darwin", "x86_64-darwin"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Ruby and Rust
uses: oxidize-rb/actions/setup-ruby-and-rust@v1
with:
ruby-version: "4.0"
bundler-cache: false # Needed so 'bundler install' doesn't run
cargo-cache: true
cargo-vendor: true
working-directory: ./temporalio
cache-version: v1-${{ matrix.rubyPlatform }}
# Cannot use oxidize-rb/actions/cross-gem because it has older Rust and we
# need --mount-toolchains to get latest Rust, see
# https://github.com/oxidize-rb/actions/issues/61
- name: Cross compile gem
id: cross-gem
working-directory: ./temporalio
run: |
gem install rb_sys --no-document
rb-sys-dock --platform ${{ matrix.rubyPlatform }} --ruby-versions "3.3,3.4,4.0" --mount-toolchains --build
echo "gem-path=$(find pkg -name '*-${{ matrix.rubyPlatform }}.gem')" >> $GITHUB_OUTPUT
- name: Upload gem
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: ${{ matrix.rubyPlatform }}-gem
path: ./temporalio/${{ steps.cross-gem.outputs.gem-path }}
build-source-gem:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Ruby and Rust
uses: oxidize-rb/actions/setup-ruby-and-rust@v1
with:
ruby-version: "4.0"
bundler-cache: true
cargo-cache: true
cache-version: v1-source
- name: Fix gem directory permissions
run: chmod -R o-w "$RUNNER_TOOL_CACHE/Ruby" || true
- name: Install bundle
working-directory: ./temporalio
run: bundle install
- name: Build
working-directory: ./temporalio
run: bundle exec rake build
- name: Upload gem
uses: actions/upload-artifact@v4
with:
name: source-gem
path: temporalio/pkg/*.gem
smoke-test-gems:
needs:
- build-platform-gems
strategy:
fail-fast: false
matrix:
# TODO(cretz): Enable Linux ARM. See ci.yaml comment for why we can't right now.
#
# TODO(cretz): Enable windows-latest if we can figure out Windows issue, see
# https://github.com/temporalio/sdk-ruby/issues/172
#
# TODO(cretz): macos-intel (macos-13) is not tested against because the GH runner for it
# does not have updated certificates and it is not easy to update them, see
# https://github.com/temporalio/sdk-ruby/issues/306
os: [ubuntu-latest, macos-latest]
rubyVersion: ["3.3", "3.4", "4.0"]
# Container defaults to empty/none, but additional container for Alpine
# added later
container: [""]
include:
- os: ubuntu-latest
rubyPlatform: x86_64-linux
- os: macos-latest
rubyPlatform: arm64-darwin
- os: ubuntu-latest
rubyVersion: "3.3"
container: alpine/git:latest
rubyPlatform: x86_64-linux-musl
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download gem
uses: actions/download-artifact@v4
with:
name: ${{ matrix.rubyPlatform }}-gem
path: local-gem
# This only works on official runners
- name: Setup Ruby
if: ${{ matrix.container == '' }}
uses: oxidize-rb/actions/setup-ruby-and-rust@v1
with:
ruby-version: "${{ matrix.rubyVersion }}"
bundler-cache: true
cargo-cache: false
# Works for Alpine
- name: Setup Ruby (Alpine)
if: ${{ matrix.container == 'alpine/git:latest' }}
run: apk add --no-cache ruby ruby-dev ruby-bundler build-base
- name: Run smoke test
run: ruby ./temporalio/smoke_test/smoke_test_gem.rb 'local-gem/*-${{ matrix.rubyPlatform }}.gem'