fast_woothee 1.6.3.pre.beta.1210 → 1.6.5.pre.beta.2

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: 46736bbe1a244264002ec35662ac7d62c3dc33a12d6976a2bba9250cbe50c61a
4
- data.tar.gz: 2291d6d595b3e89c0685a353583a38af07d0dfb2e8a84222bc41d62721f1e9ac
3
+ metadata.gz: 1800e2a5498dd2a542608c38f63d0a59c75bc8f15a93e3e5bc552799db4e151d
4
+ data.tar.gz: 884568557d652b2fc298f7c91ddecb35fd5eb79c0a6485431fb8b0b9a819602b
5
5
  SHA512:
6
- metadata.gz: d9fb832e5b9adb8a984a4afb5f3343722ccac6ed0bd685e6396ff0c9065f5c2a5d627a853a7a62fe05b5aa73dc0d44f250ff2e76524cb30a1ef92a4291252edf
7
- data.tar.gz: acedb9f8d248b8a442577d6dfb3e60bf42056688167a11d4f8f577df1116fa27dcf2f5a1bc8a3e3dfb379a0371a5dc7234e1e52535b5224f09f14f792302f1bd
6
+ metadata.gz: 5cc62638bd060aa2c3f8b0020e8cb6c045d94a03b7e78babdcd2e733e92008f18ffe37f808976a5443b42399aa597947d400bda00f85b6c3b7d88aaa699c29e2
7
+ data.tar.gz: 4b6a19094dec823b6f0d8a008ef9b33151c439ba886eda27db782067caacb28162231bb5b0f7ea31d14117a825c22f1b7abc60b7e5df2efd182d0956cd00a519
@@ -12,17 +12,37 @@ 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: Install dependencies (system)
23
+ if: ${{ matrix.os == 'ubuntu-latest' }}
24
+ run: sudo apt-get -yqq install curl gpg
25
+
26
+ - name: Install RVM
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
+
22
32
  - name: Set up Ruby ${{ matrix.ruby }}
23
- uses: ruby/setup-ruby@v1
24
- with:
25
- ruby-version: $${{ matrix.ruby }}
33
+ if: ${{ matrix.static == '0' }}
34
+ run: |
35
+ source "$HOME/.rvm/scripts/rvm"
36
+ rvm install ${{ matrix.ruby }}
37
+ rvm use ${{ matrix.ruby }} --default
38
+
39
+ - name: Set up Ruby ${{ matrix.ruby }}
40
+ if: ${{ matrix.static == '1' }}
41
+ run: |
42
+ source "$HOME/.rvm/scripts/rvm"
43
+ rvm install --static ${{ matrix.ruby }}
44
+ rvm use ${{ matrix.ruby }} --default
45
+ echo "RUBY_STATIC=1" >> $GITHUB_ENV
26
46
 
27
47
  - name: Install Rust
28
48
  uses: actions-rs/toolchain@v1
@@ -31,13 +51,14 @@ jobs:
31
51
 
32
52
  - name: 🥏 Install deps
33
53
  run: |
54
+ source "$HOME/.rvm/scripts/rvm"
34
55
  gem install bundler
35
56
  bundle install --jobs 4 --retry 3
36
57
 
37
58
  - name: 📦 Package it
38
59
  id: package
39
60
  run: |
40
- ${{ matrix.static }}
61
+ source "$HOME/.rvm/scripts/rvm"
41
62
  bundle exec rake thermite:tarball
42
63
  echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
43
64
 
@@ -46,7 +67,7 @@ jobs:
46
67
  run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
47
68
 
48
69
  - name: Upload Release Asset
49
- id: upload-release-asset
70
+ id: upload-release-asset
50
71
  uses: actions/upload-release-asset@v1
51
72
  env:
52
73
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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.1210"
13
+ version = "1.6.5-beta.2"
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.1210"
3
+ version = "1.6.5-beta.2"
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.1210'
8
+ spec.version = '1.6.5-beta.2'
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.1210
4
+ version: 1.6.5.pre.beta.2
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-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thermite