Skip to content

Commit

Permalink
ci: comment out release ci workflow for further review
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Nov 30, 2024
1 parent 11b772d commit 5b02cd2
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
name: Check release
# ! TODO: Is this reasonable?
# name: Check release

on:
workflow_dispatch:
push:
branches:
- "release-plz-**"
# on:
# workflow_dispatch:
# push:
# branches:
# - "release-plz-**"


concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
# concurrency:
# group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
# cancel-in-progress: true

jobs:
breaking-cli:
name: Check breaking CLI changes
if: ${{ github.repository_owner == 'rustic-rs' }}
runs-on: ubuntu-latest
# jobs:
# breaking-cli:
# name: Check breaking CLI changes
# if: ${{ github.repository_owner == 'rustic-rs' }}
# runs-on: ubuntu-latest

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 # v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2
- name: Run Cargo Test
run: cargo test -F release -p rustic-rs --test completions -- --ignored
# steps:
# - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# - name: Install Rust toolchain
# uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 # v1
# with:
# toolchain: stable
# - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2
# - name: Run Cargo Test
# run: cargo test -F release -p rustic-rs --test completions -- --ignored

0 comments on commit 5b02cd2

Please sign in to comment.