Skip to content

daily-bundler

daily-bundler #1539

Workflow file for this run

name: daily-bundler
on:
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
daily_bundler:
name: Bundler (ruby-head)
runs-on: ubuntu-22.04
if: github.repository == 'rubygems/rubygems'
env:
RGV: ..
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Set up Ruby
uses: ruby/setup-ruby@cacc9f1c0b3f4eb8a16a6bb0ed10897b43b9de49 # v1.176.0
with:
ruby-version: ruby-head
bundler: none
- name: Show Ruby version
run: ruby --version
- name: Prepare dependencies
run: |
sudo apt-get install graphviz -y
bin/rake spec:parallel_deps
- name: Run Test
run: |
bin/rake spec:all
- name: Get previous status
if: always()
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-bundler.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV
- uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
with:
status: ${{ job.status }}
fields: repo,message,commit,author,action,eventName,ref,workflow
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
if: failure() && env.OLD_STATUS == '"success"'
timeout-minutes: 60