fast_woothee 1.6.3.pre.beta.13210 → 1.6.5.pre.beta.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 160eab06dd16f528a9c42a7a3e0979156feeac2879b701b9e8392ca1e2c2ec93
4
- data.tar.gz: bc5a06209ba6dfd9ce63c377ca840f69cdcadec5c18ce9ad9e981c76d9f906c2
3
+ metadata.gz: f76f215b3c43d2b46ec4fd9da7639b470873492ce618bc9e9b5fe8efbc0d05b1
4
+ data.tar.gz: 119ddf0e5c7654b3e875c9677fc0e8eb848aa9a0bde125f768b2756b7e678e47
5
5
  SHA512:
6
- metadata.gz: ba257ff2bde79807b4043a59f2b81ac81781368d50d636df72abe4cce1d30aa8551b528a8898d08f6fc8b6ca9ad64c86e6ce160bbec71dd07cd2398e7d0d8d2a
7
- data.tar.gz: 8949a35579ef140063d5ca81a7fd4149191c078d9fe981b016f79acaf1994c1c311733dcd8ad83af526d21f569dca55b23b9878d4882bd9c0a5ac84a5edec44d
6
+ metadata.gz: 7b57cabe6b6aa567bcbf0a2e0071bb2759f0bc0fca570a8f9e316334eab8d5d606ea83f39d90c73b400b2c7f10190e93171e65d4ad0e4057e3a5674bd8a616da
7
+ data.tar.gz: 67af9ed878c9af40a1bb1184807e7cd834eba178439fe35bbbd75b3162a681df5bd9638eb760df10494f7190073a07313281eb1b01d933f091380be111219805
@@ -12,17 +12,30 @@ jobs:
12
12
  fail-fast: false
13
13
  matrix:
14
14
  os: [macos-latest, ubuntu-latest]
15
- ruby: [2.5, 2.6, 2.7]
16
- static: ['unset RUBY_STATIC']
15
+ ruby: ['2.5', '2.6', '2.7']
16
+ static: ['0', '1']
17
17
  runs-on: ${{ matrix.os }}
18
18
 
19
19
  steps:
20
20
  - uses: actions/checkout@v2
21
21
 
22
- - name: Set up Ruby ${{ matrix.ruby }}
23
- uses: actions/setup-ruby@v1
24
- with:
25
- ruby-version: $${{ matrix.ruby }}
22
+ - name: Install dependencies (system)
23
+ if: ${{ matrix.os == 'ubuntu-latest' }}
24
+ run: sudo apt-get -yqq install curl gpg
25
+
26
+ - name: Install Ruby
27
+ run: |
28
+ curl -sSL https://rvm.io/mpapis.asc | gpg --import -
29
+ curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
30
+ curl -sSL https://get.rvm.io | bash -s stable
31
+ source "$HOME/.rvm/scripts/rvm"
32
+ rvm install ${{ matrix.ruby }}
33
+ rvm use ${{ matrix.ruby }} --default
34
+
35
+ - name: Configure Ruby
36
+ if: ${{ matrix.static == '1' }}
37
+ run: |
38
+ echo "RUBY_STATIC=1" >> $GITHUB_ENV
26
39
 
27
40
  - name: Install Rust
28
41
  uses: actions-rs/toolchain@v1
@@ -31,13 +44,14 @@ jobs:
31
44
 
32
45
  - name: 🥏 Install deps
33
46
  run: |
47
+ source "$HOME/.rvm/scripts/rvm"
34
48
  gem install bundler
35
49
  bundle install --jobs 4 --retry 3
36
50
 
37
51
  - name: 📦 Package it
38
52
  id: package
39
53
  run: |
40
- ${{ matrix.static }}
54
+ source "$HOME/.rvm/scripts/rvm"
41
55
  bundle exec rake thermite:tarball
42
56
  echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
43
57
 
@@ -46,7 +60,7 @@ jobs:
46
60
  run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
47
61
 
48
62
  - name: Upload Release Asset
49
- id: upload-release-asset
63
+ id: upload-release-asset
50
64
  uses: actions/upload-release-asset@v1
51
65
  env:
52
66
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -17,7 +17,7 @@ jobs:
17
17
  submodules: true
18
18
 
19
19
  - name: 💎 Set up Ruby ${{ matrix.ruby }}
20
- uses: actions/setup-ruby@v1
20
+ uses: ruby/setup-ruby@v1
21
21
  with:
22
22
  ruby-version: ${{ matrix.ruby }}
23
23
 
data/Cargo.lock CHANGED
@@ -10,7 +10,7 @@ dependencies = [
10
10
 
11
11
  [[package]]
12
12
  name = "fast_woothee"
13
- version = "1.6.3-beta.13210"
13
+ version = "1.6.5-beta.3"
14
14
  dependencies = [
15
15
  "rutie 0.8.1 (git+https://github.com/danielpclark/rutie)",
16
16
  "woothee 0.11.0 (git+https://github.com/woothee/woothee-rust)",
data/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "fast_woothee"
3
- version = "1.6.3-beta.13210"
3
+ version = "1.6.5-beta.3"
4
4
  authors = ["Ian Ker-Seymer <i.kerseymer@gmail.com>"]
5
5
  repository = "https://github.com/ianks/fast_woothee"
6
6
  publish = false
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'fast_woothee'
8
- spec.version = '1.6.3-beta.13210'
8
+ spec.version = '1.6.5-beta.3'
9
9
  spec.authors = ['Ian Ker-Seymer']
10
10
  spec.email = ['i.kerseymer@gmail.com']
11
11
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_woothee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3.pre.beta.13210
4
+ version: 1.6.5.pre.beta.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-16 00:00:00.000000000 Z
11
+ date: 2021-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thermite