Skip to content

Commit

Permalink
De-activate all CI
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-hill committed Jan 7, 2025
1 parent 1cfd9a3 commit f870963
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 75 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ on:
- release/*

jobs:
pre-release-check:
name: Perform checks before releasing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git fetch --quiet origin main
git merge-base --is-ancestor HEAD origin/main
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: ["2.7", "3.0", "3.1", "3.2"]
include:
- os: ubuntu-latest
ruby: jruby-9.4
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test-ruby
with:
ruby-version: ${{ matrix.ruby }}
# pre-release-check:
# name: Perform checks before releasing
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: |
# git fetch --quiet origin main
# git merge-base --is-ancestor HEAD origin/main
#
# tests:
# strategy:
# matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
# ruby: ["2.7", "3.0", "3.1", "3.2"]
# include:
# - os: ubuntu-latest
# ruby: jruby-9.4
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/test-ruby
# with:
# ruby-version: ${{ matrix.ruby }}

publish-rubygem:
name: Publish Ruby Gem
needs: [pre-release-check, tests]
# needs: [pre-release-check, tests]
runs-on: ubuntu-latest
environment: Release
steps:
Expand Down
40 changes: 20 additions & 20 deletions .github/workflows/rubocop.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- run: bundle exec rubocop
#name: Lint
#
#on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
#
#jobs:
# rubocop:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: 2.7
# bundler-cache: true
# - run: bundle exec rubocop
62 changes: 31 additions & 31 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
name: Test cucumber

on:
push:
branches:
- main
- renovate/*
pull_request:
branches:
- main
schedule:
- cron: "0 5 * * *"

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: ["2.7", "3.0", "3.1", "3.2"]
include:
- os: ubuntu-latest
ruby: jruby-9.4
- os: ubuntu-latest
ruby: truffleruby-head
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test-ruby
with:
ruby-version: ${{ matrix.ruby }}
#name: Test cucumber
#
#on:
# push:
# branches:
# - main
# - renovate/*
# pull_request:
# branches:
# - main
# schedule:
# - cron: "0 5 * * *"
#
#jobs:
# test:
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
# ruby: ["2.7", "3.0", "3.1", "3.2"]
# include:
# - os: ubuntu-latest
# ruby: jruby-9.4
# - os: ubuntu-latest
# ruby: truffleruby-head
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/test-ruby
# with:
# ruby-version: ${{ matrix.ruby }}

0 comments on commit f870963

Please sign in to comment.