Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use workspace dependencies, update toolchain, use global lock in expression #994

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
matrix:
os:
- ubuntu-22.04
features: ["", "--features pro", "--all-features"]
features: ["--all-features"]
build: [""]

steps:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
matrix:
os:
- ubuntu-22.04
features: ["", "--features pro", "--all-features"]
features: ["--all-features"]
build: ["", "--release"]

steps:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

strategy:
matrix:
cargo-features: ["pro", ""]
cargo-features: ["all"] # pro == all

runs-on: ubuntu-22.04

Expand All @@ -43,6 +43,13 @@ jobs:
echo "FULL_TAG_NAME=${{matrix.cargo-features}}-${{env.TAG_NAME}}" >> $GITHUB_ENV
echo "CARGO_FEATURES=--features=${{matrix.cargo-features}}" >> $GITHUB_ENV

# we keep the pro tag for --all-features for compatibility
- name: Features == all --> --all-features (== pro)
if: matrix.cargo-features == 'all'
run: |
echo "FULL_TAG_NAME=pro-${{env.TAG_NAME}}" >> $GITHUB_ENV
echo "CARGO_FEATURES=--all-features" >> $GITHUB_ENV

- name: Checkout code
uses: actions/checkout@v3
with:
Expand Down
Loading
Loading