Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Jan 19, 2021
1 parent df17c4d commit 9750b20
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest]
ruby: ['2.5', '2.6', '2.7']
static: ['unset RUBY_STATIC', 'export RUBY_STATIC=1']
static: ['0', '1']
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -23,18 +23,27 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get -yqq install curl gpg

# - name: Install dependencies (system)
# if: ${{ matrix.os == 'macos-latest' }}
# run: brew install curl
- name: Install RVM
run: |
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
curl -sSL https://get.rvm.io | bash -s stable
- name: Set up Ruby ${{ matrix.ruby }}
if: ${{ matrix.static == '0' }}
run: |
gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
curl -sSL https://get.rvm.io | bash -s stable
source "$HOME/.rvm/scripts/rvm"
rvm install ${{ matrix.ruby }}
rvm use ${{ matrix.ruby }} --default
- name: Set up Ruby ${{ matrix.ruby }}
if: ${{ matrix.static == '1' }}
run: |
source "$HOME/.rvm/scripts/rvm"
rvm install --static ${{ matrix.ruby }}
rvm use ${{ matrix.ruby }} --default
echo "RUBY_STATIC=1" >> $GITHUB_ENV
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand All @@ -50,7 +59,6 @@ jobs:
id: package
run: |
source "$HOME/.rvm/scripts/rvm"
${{ matrix.static }}
bundle exec rake thermite:tarball
echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fast_woothee"
version = "1.6.5-beta.1"
version = "1.6.5-beta.2"
authors = ["Ian Ker-Seymer <[email protected]>"]
repository = "https://github.com/ianks/fast_woothee"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion fast_woothee.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = 'fast_woothee'
spec.version = '1.6.5-beta.1'
spec.version = '1.6.5-beta.2'
spec.authors = ['Ian Ker-Seymer']
spec.email = ['[email protected]']

Expand Down

0 comments on commit 9750b20

Please sign in to comment.