From f87096308e2c9c63bc3c6c0858f511d34c99e9b3 Mon Sep 17 00:00:00 2001 From: Luke Hill Date: Tue, 7 Jan 2025 15:10:22 +0000 Subject: [PATCH] De-activate all CI --- .github/workflows/release.yaml | 48 +++++++++++++------------- .github/workflows/rubocop.yaml | 40 +++++++++++----------- .github/workflows/test.yaml | 62 +++++++++++++++++----------------- 3 files changed, 75 insertions(+), 75 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a9f5e1a2b..9774f5d9b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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: diff --git a/.github/workflows/rubocop.yaml b/.github/workflows/rubocop.yaml index de7545865..156fca6f4 100644 --- a/.github/workflows/rubocop.yaml +++ b/.github/workflows/rubocop.yaml @@ -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 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 513f24864..7ecfd107a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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 }}