mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add check_dependencies workflow
This commit is contained in:
parent
81dc37b1b4
commit
cd44febc93
Notes:
git
2020-09-25 19:22:04 +09:00
1 changed files with 57 additions and 0 deletions
57
.github/workflows/check_dependencies.yml
vendored
Normal file
57
.github/workflows/check_dependencies.yml
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
name: Check Dependencies
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
update-deps:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-20.04]
|
||||
fail-fast: true
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
steps:
|
||||
- name: Install libraries
|
||||
run: |
|
||||
set -x
|
||||
sudo apt-get update -q || :
|
||||
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
|
||||
- name: git config
|
||||
run: |
|
||||
git config --global advice.detachedHead 0
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: src
|
||||
- run: ./src/tool/actions-commit-info.sh
|
||||
id: commit_info
|
||||
- name: Fixed world writable dirs
|
||||
run: |
|
||||
chmod -v go-w $HOME $HOME/.config
|
||||
sudo chmod -R go-w /usr/share
|
||||
sudo bash -c 'IFS=:; for d in '"$PATH"'; do chmod -v go-w $d; done' || :
|
||||
- name: Set ENV
|
||||
run: |
|
||||
echo '::set-env name=JOBS::'-j$((1 + $(nproc --all)))
|
||||
- run: autoconf
|
||||
working-directory: src
|
||||
- name: Run configure
|
||||
run: ./configure -C --disable-install-doc --disable-rubygems --with-gcc 'optflags=-O0' 'debugflags=-save-temps=obj -g'
|
||||
working-directory: src
|
||||
- name: Run make
|
||||
run: make all golf
|
||||
working-directory: src
|
||||
- run: ruby tool/update-deps --fix
|
||||
working-directory: src
|
||||
- run: git diff --no-ext-diff --ignore-submodules --exit-code
|
||||
working-directory: src
|
||||
- uses: k0kubun/action-slack@v2.0.0
|
||||
with:
|
||||
payload: |
|
||||
{
|
||||
"ci": "GitHub Actions",
|
||||
"env": "${{ matrix.os }} / Dependencies need to update",
|
||||
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
||||
"commit": "${{ github.sha }}",
|
||||
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
||||
}
|
||||
env:
|
||||
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
||||
if: failure() && github.event_name == 'push'
|
Loading…
Reference in a new issue