-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f014507
commit fa6feaa
Showing
3 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,6 +112,7 @@ jobs: | |
run: | | ||
brew install libpq | ||
brew link --force libpq | ||
brew install [email protected] | ||
if: matrix.os == 'macos-14' | ||
|
||
- uses: actions/setup-python@v4 | ||
|
@@ -123,13 +124,6 @@ jobs: | |
with: | ||
poetry-version: "1.8.3" | ||
|
||
- name: Install dependencies | ||
run: poetry install --with build --without dev --no-interaction --no-root | ||
env: | ||
# For building psycopg on MacOS | ||
LDFLAGS: "-L/opt/homebrew/opt/openssl@3/lib" | ||
CPPFLAGS: "-I/opt/homebrew/opt/openssl@3/include" | ||
|
||
- name: Check system OpenSSL version | ||
run: "openssl version" | ||
if: matrix.os == 'macos-14' | ||
|
@@ -142,6 +136,13 @@ jobs: | |
run: "python -c \"import ssl; print(ssl.OPENSSL_VERSION)\"" | ||
if: matrix.os == 'macos-14' | ||
|
||
- name: Install dependencies | ||
run: poetry install --with build --without dev --no-interaction --no-root | ||
env: | ||
# For building psycopg on MacOS | ||
LDFLAGS: "-L/opt/homebrew/opt/[email protected]/lib" | ||
CPPFLAGS: "-I/opt/homebrew/opt/[email protected]/include" | ||
|
||
- name: Get the version | ||
id: get_version | ||
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "v3-operator" | ||
version = "v3.0.2.rc10" | ||
version = "v3.0.2.rc11" | ||
description = "StakeWise operator service for registering vault validators" | ||
authors = ["StakeWise Labs <[email protected]>"] | ||
package-mode = false | ||
|