Skip to content

Commit

Permalink
Remove indirection
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Sep 15, 2024
1 parent e3e3cfb commit 74bec79
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,12 @@ jobs:
executable=distribution/get-tested
ARTIFACT_NAME="get-tested-head-${{ env.KERNEL }}-${{ env.ARCH }}"
echo "ARTIFACT_NAME=${ARTIFACT_NAME}" >> $GITHUB_ENV
ARCHIVE=${ARTIFACT_NAME}.tar.gz
tar -czvf ${ARCHIVE} -C distribution distribution/get-tested
- name: Upload the get-tested executable
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_NAME }}.tar.gz
path: distribution/get-tested

build-alpine:
name: 9.10.1 on alpine-3.20
Expand Down Expand Up @@ -165,9 +163,6 @@ jobs:
mkdir distribution
cp ${bin} distribution/get-tested
- name: File type
run: file distribution/get-tested

- name: Post-process executables
run: |
strip distribution/get-tested
Expand All @@ -178,14 +173,12 @@ jobs:
GETTESTED_EXEC=distribution/get-tested
ARTIFACT_NAME="get-tested-head-${{ env.KERNEL }}-static-${{ env.ARCH }}"
echo "ARTIFACT_NAME=${ARTIFACT_NAME}" >> $GITHUB_ENV
ARCHIVE=${ARTIFACT_NAME}.tar.gz
tar -czvf ${ARCHIVE} -C distribution distribution/get-tested
- name: Upload get-tested executable to workflow artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_NAME }}.tar.gz
path: distribution/get-tested

collect-test-results:
name: Collect test results
Expand Down

0 comments on commit 74bec79

Please sign in to comment.