File tree Expand file tree Collapse file tree 7 files changed +13
-5
lines changed
aarch64-unknown-linux-gnu
arm-unknown-linux-gnueabihf
armv7-unknown-linux-gnueabihf Expand file tree Collapse file tree 7 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,10 @@ jobs:
133133 - name : Building Macos Binary
134134 run : MACOSX_DEPLOYMENT_TARGET=10.12 OPENSSL_STATIC=1 OPENSSL_DIR="/usr/local/opt/openssl" cargo build --release -p witnet -p witnet_toolkit
135135
136+ # Ensure that distributable binary files can be executed
137+ - name : Make binaries executable
138+ run : chmod +x target/release/witnet*
139+
136140 # Upload Build Releases
137141 - uses : actions/upload-artifact@v3
138142 with :
Original file line number Diff line number Diff line change 1- FROM ubuntu:latest
1+ FROM ubuntu:focal
22
33# Install basic environment dependencies
44RUN apt-get update && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1- FROM ubuntu:latest
1+ FROM ubuntu:focal
22
33# Install basic environment dependencies
44RUN apt-get update && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1- FROM ubuntu:latest
1+ FROM ubuntu:focal
22
33# Install basic environment dependencies
44RUN apt-get update && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1- FROM ubuntu:latest
1+ FROM ubuntu:focal
22
33# Install basic environment dependencies
44RUN apt-get update && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1- FROM --platform=$TARGETPLATFORM ubuntu:focal
1+ FROM --platform=$TARGETPLATFORM ubuntu:jammy
22
33# Install basic environment dependencies
44RUN apt-get update && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ if [[ "$TRIPLET" == *"linux"* ]]; then
1616 TRIPLET=${TRIPLET/ pc/ unknown}
1717fi
1818
19+ if [[ " $TRIPLET " == * " arm-" * ]]; then
20+ TRIPLET=${TRIPLET/ arm/ armv7}
21+ fi
22+
1923URL=" https://github.com/witnet/witnet-rust/releases/download/$VERSION /witnet-$VERSION -$TRIPLET .tar.gz"
2024
2125FILENAME=" $VERSION .tar.gz"
You can’t perform that action at this time.
0 commit comments