mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
Fix issue where macOS binaries failed to run due to absolute openssl paths and too-new min OS (#4687)
This commit is contained in:
@@ -78,16 +78,16 @@ jobs:
|
||||
- name: Pull & Extract - darwin amd64
|
||||
run: |-
|
||||
EXTRACT_DIR=extracted-darwin-amd64
|
||||
# new link (darwin-amd64.txz) - https://drive.google.com/file/d/14t83HKLJ-ckLwgqRnkVPMTeaw5wMoPu2/view?usp=drive_link
|
||||
curl -L -o darwin-amd64.txz "https://drive.google.com/uc?export=download&id=14t83HKLJ-ckLwgqRnkVPMTeaw5wMoPu2"
|
||||
# new link (darwin-amd64.txz) - https://drive.google.com/file/d/1eFFtffVnZiyGbqdSEsT1rJwsx6B8UPfW/view?usp=drive_link
|
||||
curl -L -o darwin-amd64.txz "https://drive.google.com/uc?export=download&id=1eFFtffVnZiyGbqdSEsT1rJwsx6B8UPfW"
|
||||
mkdir $EXTRACT_DIR
|
||||
tar -xf darwin-amd64.txz --directory $EXTRACT_DIR
|
||||
|
||||
- name: Pull & Extract - darwin arm64
|
||||
run: |-
|
||||
EXTRACT_DIR=extracted-darwin-arm64
|
||||
# new link (darwin-arm64.txz) - https://drive.google.com/file/d/1UXdLn9aNDY_5OVLjgwF_cAPKiAsxHHB-/view?usp=drive_link
|
||||
curl -L -o darwin-arm64.txz "https://drive.google.com/uc?export=download&id=1UXdLn9aNDY_5OVLjgwF_cAPKiAsxHHB-"
|
||||
# new link (darwin-arm64.txz) - https://drive.google.com/file/d/1JWaAsd6_DUpUPLgwmvlGkeeuv70V9Hfx/view?usp=drive_link
|
||||
curl -L -o darwin-arm64.txz "https://drive.google.com/uc?export=download&id=1JWaAsd6_DUpUPLgwmvlGkeeuv70V9Hfx"
|
||||
mkdir $EXTRACT_DIR
|
||||
tar -xf darwin-arm64.txz --directory $EXTRACT_DIR
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ const (
|
||||
|
||||
// PostgresImageRef is the OCI Image ref for the database binaries
|
||||
PostgresImageRef = "ghcr.io/turbot/steampipe/db:14.19.0"
|
||||
PostgresImageDigest = "sha256:346d096caf87a6886fd404594ac6b72abee0b166236711fdc6c3d347c099e61f"
|
||||
PostgresImageDigest = "sha256:42fd8972700e40565799ee5f4dc6a66afa146e0994ef9103c944f2b5f5adc43a"
|
||||
|
||||
FdwImageRef = "ghcr.io/turbot/steampipe/fdw:" + FdwVersion
|
||||
FdwBinaryFileName = "steampipe_postgres_fdw.so"
|
||||
|
||||
Reference in New Issue
Block a user