static-toolbox/.forgejo/workflows/build-socat.yml

235 lines
8.7 KiB
YAML
Raw Permalink Normal View History

2020-11-04 11:38:46 +00:00
name: socat
on:
2023-05-26 07:17:44 +00:00
workflow_dispatch
2020-11-04 11:38:46 +00:00
jobs:
build-x86:
name: Build socat x86
2024-12-17 19:02:35 +00:00
runs-on: docker
2024-12-17 20:08:26 +00:00
container:
image: muslcc/x86_64:i686-linux-musl
2021-04-19 11:57:43 +00:00
outputs:
2024-12-17 20:01:36 +00:00
version: "${{ steps.build_socat.outputs.PACKAGED_VERSION }}"
2020-11-04 11:38:46 +00:00
steps:
2024-12-17 20:01:36 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash nodejs git-lfs
2020-11-04 11:38:46 +00:00
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2020-11-04 11:38:46 +00:00
2024-12-17 20:01:36 +00:00
- name: Install build dependencies
run: sudo bash build/install_deps_alpine.sh
2020-11-04 11:38:46 +00:00
- name: Install testing dependencies
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
- name: Build socat
id: build_socat
run: $GITHUB_WORKSPACE/build/targets/build_socat.sh x86
- name: Upload artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2020-11-04 11:38:46 +00:00
with:
name: ${{ steps.build_socat.outputs.PACKAGED_NAME }}
path: ${{ steps.build_socat.outputs.PACKAGED_NAME_PATH }}
build-x86_64:
name: Build socat x86_64
2024-12-17 19:02:35 +00:00
runs-on: docker
2020-11-04 11:38:46 +00:00
container: muslcc/x86_64:x86_64-linux-musl
steps:
2024-12-17 20:01:36 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash nodejs git-lfs
- name: Checkout
uses: actions/checkout@v4
- name: Install build dependencies
run: sudo bash build/install_deps_alpine.sh
2020-11-04 11:38:46 +00:00
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2020-11-04 11:38:46 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh
- name: Install testing dependencies
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
- name: Build socat
id: build_socat
run: $GITHUB_WORKSPACE/build/targets/build_socat.sh x86_64
- name: Upload artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2020-11-04 11:38:46 +00:00
with:
name: ${{ steps.build_socat.outputs.PACKAGED_NAME }}
path: ${{ steps.build_socat.outputs.PACKAGED_NAME_PATH }}
build-armhf:
name: Build socat ARMHF
2024-12-17 19:02:35 +00:00
runs-on: docker
2020-11-04 11:38:46 +00:00
container: muslcc/x86_64:arm-linux-musleabihf
steps:
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2020-11-04 11:38:46 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh
- name: Install testing dependencies
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
- name: Install build compiler
run: /bin/sh -c "apk update && apk upgrade && apk add --no-cache curl rsync sudo util-linux && cd / && curl -so ${ARCH}-cross.tgz ${HOST}/${ARCH}-cross.tgz && tar -xf ${ARCH}-cross.tgz && rm ${ARCH}-cross.tgz && cd ${ARCH}-cross"
env:
ARCH: x86_64-linux-musl
2021-04-16 13:01:34 +00:00
HOST: http://musl.cc/
2020-11-04 11:38:46 +00:00
TEMP: /tmp
USER: 0
- name: Build socat
id: build_socat
run: $GITHUB_WORKSPACE/build/targets/build_socat.sh armhf
- name: Upload artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2020-11-04 11:38:46 +00:00
with:
name: ${{ steps.build_socat.outputs.PACKAGED_NAME }}
path: ${{ steps.build_socat.outputs.PACKAGED_NAME_PATH }}
build-aarch64:
name: Build socat AARCH64
2024-12-17 19:02:35 +00:00
runs-on: docker
2020-11-04 11:38:46 +00:00
container: muslcc/x86_64:aarch64-linux-musl
steps:
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2020-11-04 11:38:46 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh
- name: Install testing dependencies
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
- name: Install build compiler
run: /bin/sh -c "apk update && apk upgrade && apk add --no-cache curl rsync sudo util-linux && cd / && curl -so ${ARCH}-cross.tgz ${HOST}/${ARCH}-cross.tgz && tar -xf ${ARCH}-cross.tgz && rm ${ARCH}-cross.tgz && cd ${ARCH}-cross"
env:
ARCH: x86_64-linux-musl
2021-04-16 13:01:34 +00:00
HOST: http://musl.cc/
2020-11-04 11:38:46 +00:00
TEMP: /tmp
USER: 0
- name: Build socat
id: build_socat
run: $GITHUB_WORKSPACE/build/targets/build_socat.sh aarch64
- name: Upload artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2020-11-04 11:38:46 +00:00
with:
name: ${{ steps.build_socat.outputs.PACKAGED_NAME }}
2021-04-19 11:57:43 +00:00
path: ${{ steps.build_socat.outputs.PACKAGED_NAME_PATH }}
2023-05-25 06:21:08 +00:00
build-ppc32:
name: Build socat powerpc32
2024-12-17 19:02:35 +00:00
runs-on: docker
2023-05-25 06:21:08 +00:00
container: muslcc/x86_64:powerpc-linux-musl
steps:
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2023-05-25 06:21:08 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh
- name: Install testing dependencies
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
- name: Install build compiler
run: /bin/sh -c "apk update && apk upgrade && apk add --no-cache curl rsync sudo util-linux && cd / && curl -so ${ARCH}-cross.tgz ${HOST}/${ARCH}-cross.tgz && tar -xf ${ARCH}-cross.tgz && rm ${ARCH}-cross.tgz && cd ${ARCH}-cross"
env:
ARCH: x86_64-linux-musl
HOST: http://musl.cc/
TEMP: /tmp
USER: 0
- name: Build socat
id: build_socat
run: $GITHUB_WORKSPACE/build/targets/build_socat.sh ppc32
- name: Upload artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2023-05-25 06:21:08 +00:00
with:
name: ${{ steps.build_socat.outputs.PACKAGED_NAME }}
path: ${{ steps.build_socat.outputs.PACKAGED_NAME_PATH }}
build-ppc64:
name: Build socat powerpc64
2024-12-17 19:02:35 +00:00
runs-on: docker
2023-05-25 06:21:08 +00:00
container: muslcc/x86_64:powerpc64-linux-musl
steps:
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2023-05-25 06:21:08 +00:00
- name: Install dependencies
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh
- name: Install testing dependencies
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
- name: Install build compiler
run: /bin/sh -c "apk update && apk upgrade && apk add --no-cache curl rsync sudo util-linux && cd / && curl -so ${ARCH}-cross.tgz ${HOST}/${ARCH}-cross.tgz && tar -xf ${ARCH}-cross.tgz && rm ${ARCH}-cross.tgz && cd ${ARCH}-cross"
env:
ARCH: x86_64-linux-musl
HOST: http://musl.cc/
TEMP: /tmp
USER: 0
- name: Build socat
id: build_socat
run: $GITHUB_WORKSPACE/build/targets/build_socat.sh ppc64
- name: Upload artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2023-05-25 06:21:08 +00:00
with:
name: ${{ steps.build_socat.outputs.PACKAGED_NAME }}
path: ${{ steps.build_socat.outputs.PACKAGED_NAME_PATH }}
2021-04-19 11:57:43 +00:00
create-release:
name: Create socat Release
2024-12-17 19:02:35 +00:00
runs-on: docker
2023-05-25 06:21:08 +00:00
needs: [build-x86, build-x86_64, build-armhf, build-aarch64, build-ppc32, build-ppc64]
2021-04-19 11:57:43 +00:00
steps:
- name: Checkout
2024-12-17 19:02:35 +00:00
uses: actions/checkout@v4
2021-04-19 11:57:43 +00:00
- name: Prepare Environment
run: mkdir /tmp/releases
- name: Download Artifacts
2024-12-17 19:02:35 +00:00
uses: https://code.forgejo.org/forgejo/download-artifact@v4
2021-04-19 11:57:43 +00:00
with:
path: /tmp/releases
- name: List Artifacts
run: ls -laR /tmp/releases
- name: Tag Release
2021-04-19 12:45:44 +00:00
id: tag_release
2021-04-19 11:57:43 +00:00
run: |
2021-04-19 12:58:34 +00:00
set +e
2021-04-19 14:38:56 +00:00
if git rev-list "socat-v${{ needs.build-x86.outputs.version }}".. >/dev/null;then
echo "Tag for socat-v${{ needs.build-x86.outputs.version }} already exists. Skipping release creation."
2023-05-22 06:44:33 +00:00
echo "NEW_RELEASE=false" >> $GITHUB_OUTPUT
2021-04-19 14:38:56 +00:00
else
git tag "socat-v${{ needs.build-x86.outputs.version }}"
2021-04-19 12:45:44 +00:00
git push origin "socat-v${{ needs.build-x86.outputs.version }}"
2023-05-22 06:44:33 +00:00
echo "NEW_RELEASE=true" >> $GITHUB_OUTPUT
2021-04-19 12:45:44 +00:00
fi
2021-04-19 11:57:43 +00:00
- name: Create Release
uses: ncipollo/release-action@v1
2021-04-19 12:46:42 +00:00
if: ${{ steps.tag_release.outputs.NEW_RELEASE == 'true' }}
2021-04-19 11:57:43 +00:00
with:
2021-04-19 12:35:05 +00:00
name: socat-v${{ needs.build-x86.outputs.version }}
2021-04-19 12:15:53 +00:00
tag: socat-v${{ needs.build-x86.outputs.version }}
2021-04-19 11:57:43 +00:00
artifacts: "/tmp/releases/*/*"
token: ${{ secrets.GITHUB_TOKEN }}