summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2021-01-07 11:01:41 +0100
committerDavid Peter <sharkdp@users.noreply.github.com>2021-01-08 19:54:25 +0100
commite7c55bffe9349b67823f195482fa3efc6f5b1321 (patch)
tree423e0310ec0a3ef819261f16bd2ddf07568d1283 /.github
parentb6b7262962ab67d34ad98788aff6ed78f1e763e3 (diff)
CICD: Build: Remove unused TARGET_* vars and outputs
For #1474
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CICD.yml5
1 files changed, 0 insertions, 5 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 91533085..363a58d2 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -119,11 +119,6 @@ jobs:
# parse commit reference info
unset REF_TAG ; case ${GITHUB_REF} in refs/tags/*) REF_TAG=${GITHUB_REF#refs/tags/} ;; esac;
REF_SHAS=${GITHUB_SHA:0:8}
- # parse target
- unset TARGET_ARCH ; case ${{ matrix.job.target }} in arm-unknown-linux-gnueabihf) TARGET_ARCH=arm ;; i686-*) TARGET_ARCH=i686 ;; x86_64-*) TARGET_ARCH=x86_64 ;; esac;
- echo ::set-output name=TARGET_ARCH::${TARGET_ARCH}
- unset TARGET_OS ; case ${{ matrix.job.target }} in *-linux-*) TARGET_OS=linux ;; *-apple-*) TARGET_OS=macos ;; *-windows-*) TARGET_OS=windows ;; esac;
- echo ::set-output name=TARGET_OS::${TARGET_OS}
# package name
PKG_suffix=".tar.gz" ; case ${{ matrix.job.target }} in *-pc-windows-*) PKG_suffix=".zip" ;; esac;
PKG_BASENAME=${PROJECT_NAME}-${REF_TAG:-$REF_SHAS}-${{ matrix.job.target }}