Skip to content

Commit b97a9aa

Browse files
committed
fix(docker): solve issue with openssl and macos
1 parent ab21fee commit b97a9aa

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/actions/build-helper/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build Helpers
22
description: "Builds & Parallelize Helper images for the compilation then archives them for next stage"
33

4-
Inputs:
4+
inputs:
55
imagename:
66
description: name of the image to tag & upload
77
required: true

.github/actions/build-linux/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build Binaries
22
description: "Builds Linux Binaries"
33

4-
Inputs:
4+
inputs:
55
target:
66
description: Build target architecture
77
required: true

.github/workflows/bridge.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Bridge
22

33
on:
4-
workflow_run:
5-
workflows: ["Release Tag"]
6-
types: [completed]
74
workflow_dispatch:
85
inputs:
96
force:
@@ -49,7 +46,7 @@ jobs:
4946
- name: Set Version
5047
run: |
5148
echo VERNUM=$(sed -nE 's/version\s?=\s?"([0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9\.]+)?)"/\1/p' ./bridges/centralized-ethereum/Cargo.toml | head -1) >> $GITHUB_ENV
52-
49+
5350
- name: Login to Docker hub Registry
5451
uses: docker/login-action@v3
5552
with:
@@ -66,7 +63,7 @@ jobs:
6663
docker build -t witnet/witnet-centralized-ethereum-bridge:latest -f ./docker/bridge/Dockerfile .
6764
docker push witnet/witnet-centralized-ethereum-bridge:latest
6865
if: env.prerelease == 'false'
69-
66+
7067

7168
Failure:
7269
runs-on: ubuntu-latest

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
127127
Build_macOs:
128128
needs: [macos_helper]
129-
runs-on: macos-latest
129+
runs-on: macos-12
130130
steps:
131131
- name: Checkout
132132
uses: actions/checkout@v4
@@ -287,7 +287,7 @@ jobs:
287287
# Build Docker images (Latest & TAG)
288288
- name: Build TAG
289289
run: docker buildx build -f docker/witnet-rust/Dockerfile --progress=plain --build-arg WITNET_VERSION=${{github.ref_name}} --platform linux/amd64,linux/arm64,linux/arm/v7 --tag witnet/witnet-rust:${{github.ref_name}} docker/witnet-rust --push --no-cache
290-
290+
291291
- name: Check Pre-release
292292
run: |
293293
TAG=${{ github.ref_name }}

0 commit comments

Comments
 (0)