Skip to content

Commit

Permalink
Fix build settings for 0.7 base PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwalker committed Aug 7, 2024
1 parent 4a356fc commit 83a7597
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ on:
env:
RUST_LOG: debug
CARGO_TERM_COLOR: always
MSRV: ${{ (github.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '1.63.0' || '1.75.0' }}
HACK: hack --package neo4rs --each-feature ${{ (github.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '' || '--exclude-features unstable-serde-packstream-format,unstable-bolt-protocol-impl-v2,unstable-streaming-summary' }}
MSRV: ${{ ((github.base_ref || github.ref) == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '1.63.0' || '1.75.0' }}
HACK: hack --package neo4rs --each-feature ${{ ((github.base_ref || github.ref) == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '' || '--exclude-features unstable-serde-packstream-format,unstable-bolt-protocol-impl-v2,unstable-streaming-summary' }}


jobs:
Expand Down
2 changes: 1 addition & 1 deletion .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.ref == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '1.63.0' || '1.75.0' }}
MSRV: ${{ ((github.base_ref || github.ref) == 'refs/heads/0.7' || startsWith(github.ref, 'refs/tags/v0.7.')) && '1.63.0' || '1.75.0' }}

jobs:
make-release-pr:
Expand Down

0 comments on commit 83a7597

Please sign in to comment.