mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
extra fancy version
This commit is contained in:
parent
6dd73eb14e
commit
6a799a5d47
1 changed files with 10 additions and 2 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -115,9 +115,17 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ${{ inputs.platform }}
|
name: ${{ inputs.platform }}
|
||||||
|
|
||||||
- name: extract bottles
|
- name: clean destination
|
||||||
# Note: unlinking needed when changing a directory to a symlink, for example in
|
# Note: needed when changing a directory to a symlink, for example in
|
||||||
# https://github.com/teaxyz/pantry.extra/pull/435
|
# https://github.com/teaxyz/pantry.extra/pull/435
|
||||||
|
run: |
|
||||||
|
tar tzf artifacts.tgz | \
|
||||||
|
awk '{ print length, $0 }' | \
|
||||||
|
sort -n -s -r | \
|
||||||
|
cut -d" " -f2- | \
|
||||||
|
xargs rm -rf
|
||||||
|
|
||||||
|
- name: extract bottles
|
||||||
run: tar xzvf artifacts.tgz -C $TEA_PREFIX --recursive-unlink --unlink-first
|
run: tar xzvf artifacts.tgz -C $TEA_PREFIX --recursive-unlink --unlink-first
|
||||||
|
|
||||||
- run: pkg test ${{ inputs.projects }}
|
- run: pkg test ${{ inputs.projects }}
|
||||||
|
|
Loading…
Reference in a new issue