Skip to content

Commit

Permalink
Bump CI files to match 0.8 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwalker committed Aug 7, 2024
1 parent 7834d7c commit c45acb2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ name: checks
on:
push:
branches:
- main
- "0.7"
- "0.8"
pull_request:
branches:
- main
- "0.7"
- "0.8"
merge_group:
workflow_dispatch:
inputs:
Expand All @@ -23,9 +21,8 @@ on:
env:
RUST_LOG: debug
CARGO_TERM_COLOR: always
MSRV: ${{ (github.base_ref == '0.7' || github.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '1.63.0' || '1.75.0' }}
HACK: hack --package neo4rs ${{ (github.base_ref == '0.7' || github.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '--each-feature' || '--each-feature --exclude-features unstable-serde-packstream-format,unstable-bolt-protocol-impl-v2,unstable-streaming-summary' }}

MSRV: 1.63.0
HACK: hack --package neo4rs --each-feature --exclude-all-features

jobs:
check:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

env:
RUSTUP_TOOLCHAIN: stable
MSRV: ${{ (github.base_ref == '0.7' || github.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '1.63.0' || '1.75.0' }}
MSRV: 1.63.0

jobs:
make-release-pr:
Expand Down Expand Up @@ -75,4 +75,4 @@ jobs:
version: ${{ inputs.version }}
crate-name: ${{ inputs.crate }}
check-semver: true
base-branch: ${{ (github.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '0.7' || 'main' }}
base-branch: '0.8'

0 comments on commit c45acb2

Please sign in to comment.