This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
0x1 ➼ Quick Tests #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fork: https://github.com/shutingrz/busybox-static-binaries-fat/tree/main | |
name: 0x1 ➼ Quick Tests | |
on: | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: "${{ secrets.STATIC_BINARIES_RELEASER }}" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: main | |
- name: Install upX | |
#if: env.versions_same != 'true' | |
run: | | |
cd $(mktemp -d) && curl -qfLJO "$(curl -s https://api.github.com/repos/upx/upx/releases/latest | jq -r '.assets[].browser_download_url' | grep -i 'amd64_linux')" | |
find . -type f -name '*tar*' -exec tar -xvf {} \; | |
sudo find . -type f -name 'upx' -exec mv {} "$(which upx)" \; | |
continue-on-error: false | |
#Update Readme | |
- name: Update README.md | |
#if: env.versions_same != 'true' | |
run: | | |
set -x | |
cd "$GITHUB_WORKSPACE/main" | |
sudo chmod +xwr ./wget/wget* | |
cat ./wget/INFO.md > ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '---' >> ./wget/README.md | |
echo '```console' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo -e "--> METADATA" >> ./wget/README.md | |
{ | |
/bin/bash -c 'PS4="$ "; file ./wget/* | grep -v '.txt' | grep -v '.md' | grep -v '.base64' 2>&1' | |
} >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo -e "--> SHA256SUM" >> ./wget/README.md | |
{ | |
/bin/bash -c 'PS4="$ "; sha256sum ./wget/* | grep -v '.txt' | grep -v '.md' | grep -v '.base64' 2>&1' | |
} >> ./wget/README.md | |
echo -e '```\n' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '---' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '- #### Sizes' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '```console' >> ./wget/README.md | |
{ | |
/bin/bash -c 'PS4="$ ";ls -lh ./wget/wget* | grep -v '.txt' | grep -v '.md' | awk "{print \$5, \$9}" | column -t 2>&1' | |
} >> ./wget/README.md | |
echo '```' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '---' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '- #### Flags' >> ./wget/README.md | |
echo '```console' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
/bin/bash -c 'PS4="$ "; set -x; ./wget/wget_busybox_amd_x86_64_gcc_Linux' &>> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '```' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
echo '---' >> ./wget/README.md | |
echo -e "" >> ./wget/README.md | |
working-directory: main | |
continue-on-error: true | |
#https://github.com/stefanzweifel/git-auto-commit-action | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
repository: ./main | |
commit_user_name: Azathothas # defaults to "github-actions[bot]" | |
commit_user_email: [email protected] # defaults to "41898282+github-actions[bot]@users.noreply.github.com" | |
commit_message: "Cross-Compile wget Binaries <-- ${{ env.VERSION }}" | |
#push_options: '--force' |