Skip to content

Commit

Permalink
move the ARCHES variable to GitHub Actions Variables (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
travislee89 authored Sep 11, 2024
1 parent 2395e40 commit 2431817
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:

- name: Cross Build Static cURL
env:
ARCHES: ${{ vars.ARCHES_LINUX_GLIBC }}
CURL_VERSION: ${{ vars.CURL_VERSION }}
TLS_LIB: ${{ vars.TLS_LIB }}
QUICTLS_VERSION: ${{ vars.QUICTLS_VERSION }}
Expand All @@ -37,7 +38,6 @@ jobs:
STATIC_LIBRARY: 1
CONTAINER_IMAGE: debian:latest
TOKEN_READ: ${{ secrets.GITHUB_TOKEN }}
ARCHES: "x86_64 aarch64 armv7 armv5 riscv64 s390x mips64 mips64el mipsel powerpc64le powerpc"
run: |
ARCHES="${ARCHES}"
CURL_VERSION=${CURL_VERSION}
Expand Down Expand Up @@ -97,6 +97,7 @@ jobs:

- name: Cross Build Static cURL
env:
ARCHES: ${{ vars.ARCHES_LINUX_MUSL }}
CURL_VERSION: ${{ vars.CURL_VERSION }}
TLS_LIB: ${{ vars.TLS_LIB }}
QUICTLS_VERSION: ${{ vars.QUICTLS_VERSION }}
Expand All @@ -116,7 +117,6 @@ jobs:
LIBC: musl
CONTAINER_IMAGE: debian:latest
TOKEN_READ: ${{ secrets.GITHUB_TOKEN }}
ARCHES: "x86_64 aarch64 armv7 armv5 i686 riscv64 s390x mips64 mips64el mips mipsel powerpc64le powerpc"
run: |
ARCHES="${ARCHES}"
CURL_VERSION=${CURL_VERSION}
Expand Down Expand Up @@ -175,6 +175,7 @@ jobs:

- name: Cross Build Static cURL
env:
ARCHES: ${{ vars.ARCHES_WINDOWS }}
CURL_VERSION: ${{ vars.CURL_VERSION }}
TLS_LIB: ${{ vars.TLS_LIB }}
QUICTLS_VERSION: ${{ vars.QUICTLS_VERSION }}
Expand All @@ -193,7 +194,6 @@ jobs:
TRURL_VERSION: ${{ vars.TRURL_VERSION }}
CONTAINER_IMAGE: mstorsjo/llvm-mingw:latest
TOKEN_READ: ${{ secrets.GITHUB_TOKEN }}
ARCHES: "x86_64 aarch64 armv7 i686"
run: |
ARCHES="${ARCHES}"
CURL_VERSION=${CURL_VERSION}
Expand Down Expand Up @@ -255,6 +255,7 @@ jobs:

- name: Build Static cURL on macOS
env:
ARCHES: ${{ vars.ARCHES_MACOS }}
CURL_VERSION: ${{ vars.CURL_VERSION }}
TLS_LIB: ${{ vars.TLS_LIB }}
QUICTLS_VERSION: ${{ vars.QUICTLS_VERSION }}
Expand All @@ -270,7 +271,6 @@ jobs:
LIBSSH2_VERSION: ${{ vars.LIBSSH2_VERSION }}
ARES_VERSION: ${{ vars.ARES_VERSION }}
TOKEN_READ: ${{ secrets.GITHUB_TOKEN }}
ARCHES: "x86_64 arm64"
run: |
ARCHES="${ARCHES}"
CURL_VERSION=${CURL_VERSION}
Expand Down

0 comments on commit 2431817

Please sign in to comment.