Manually install LibV8 #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
jobs: | |
specs: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
ruby: [3.1.1] | |
name: ${{ matrix.os }} / Ruby ${{ matrix.ruby }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout git | |
uses: actions/checkout@v1 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
if: ${{ matrix.ruby != 'system' }} | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Update git submodules | |
run: git submodule update --init | |
- name: Configure git | |
run: | | |
git config --global user.email "bots@cocoapods.org" | |
git config --global user.name "CocoaPods Bot" | |
- name: Install LibV8 | |
run: | | |
sudo apt-get install -y libv8-dev | |
- name: Run bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 --without debugging documentation | |
- name: Run rake bootstrap | |
run: rake bootstrap | |
- name: Deploy | |
run: | | |
git remote set-url origin "https://${GH_TOKEN}@github.com/CocoaPods/guides.cocoapods.org.git" | |
bundle exec rake deploy | |
on: | |
push: | |
branches: | |
- "master" |