-
Notifications
You must be signed in to change notification settings - Fork 17
50 lines (48 loc) · 1.24 KB
/
gem-install.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
name: Native Gems
on: [push, pull_request]
jobs:
package:
strategy:
fail-fast: false
matrix:
platform: ["x86_64-darwin", "x86_64-linux"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler: latest
bundler-cache: true
- run: "bundle exec rake gem:${{matrix.platform}}"
- uses: actions/upload-artifact@v2
with:
name: gem-${{matrix.platform}}
path: pkg
retention-days: 1
linux-install:
needs: ["package"]
runs-on: ubuntu-latest
steps:
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
- uses: actions/download-artifact@v2
with:
name: gem-x86_64-linux
path: pkg
- run: "gem install pkg/litestream-*.gem"
- run: "litestream version"
darwin-install:
needs: ["package"]
runs-on: macos-latest
steps:
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
- uses: actions/download-artifact@v2
with:
name: gem-x86_64-darwin
path: pkg
- run: "gem install pkg/litestream-*.gem"
- run: "litestream version"