add forgejo workflow
This commit is contained in:
parent
46da0c049b
commit
86b4b50b99
1 changed files with 170 additions and 0 deletions
170
.forgejo/workflows/build_all.yaml
Normal file
170
.forgejo/workflows/build_all.yaml
Normal file
|
@ -0,0 +1,170 @@
|
|||
name: Build all artifacts and make release
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
build:
|
||||
description: 'Select build type'
|
||||
required: true
|
||||
default: 'all'
|
||||
options:
|
||||
- all
|
||||
- mac
|
||||
- windows
|
||||
- linux
|
||||
|
||||
jobs:
|
||||
build-macos:
|
||||
if: ${{ github.event.inputs.build == 'all' || github.event.inputs.build == 'mac' }}
|
||||
runs-on: macos-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Download universal2 Python
|
||||
run: |
|
||||
curl -o python.pkg https://www.python.org/ftp/python/3.12.4/python-3.12.4-macos11.pkg
|
||||
- name: Install Python
|
||||
run: |
|
||||
sudo installer -pkg python.pkg -target /
|
||||
- name: Add Python to PATH
|
||||
run: |
|
||||
echo "/Library/Frameworks/Python.framework/Versions/3.12/bin" >> $GITHUB_PATH
|
||||
- name: Verify Python installation
|
||||
run: |
|
||||
python3 --version
|
||||
pip3 --version
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip3 install --upgrade pip
|
||||
pip3 install pyinstaller
|
||||
pip3 install --no-cache cffi --no-binary :all:
|
||||
pip3 install --no-cache charset_normalizer --no-binary :all:
|
||||
pip3 install -U --pre -f https://wxpython.org/Phoenix/snapshot-builds/ wxPython
|
||||
pip3 install -r requirements.txt
|
||||
- name: Build with PyInstaller
|
||||
run: |
|
||||
pyinstaller BTClockOTA-universal.spec
|
||||
- name: Zip the app bundle
|
||||
run: |
|
||||
cd dist
|
||||
zip -r BTClockOTA-macos-universal2.zip BTClockOTA.app
|
||||
- name: Create DMG
|
||||
run: |
|
||||
mkdir dmg_temp
|
||||
cp -R dist/BTClockOTA.app dmg_temp/
|
||||
# Create the DMG file
|
||||
hdiutil create -volname "BTClockOTA" -srcfolder dmg_temp -ov -format UDZO "dist/BTClockOTA-universal.dmg"
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: macos-artifacts
|
||||
path: |
|
||||
dist/*
|
||||
!dist/BTClockOTA.app
|
||||
build-windows:
|
||||
if: ${{ github.event.inputs.build == 'all' || github.event.inputs.build == 'windows' }}
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-22.04
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-
|
||||
- name: Run Docker Container
|
||||
run: |
|
||||
docker run --rm \
|
||||
--volume "${{ github.workspace }}:/src/" \
|
||||
--env SPECFILE=./BTClockOTA.spec \
|
||||
batonogov/pyinstaller-windows:latest
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: windows-artifacts
|
||||
path: dist/
|
||||
build-linux:
|
||||
if: ${{ github.event.inputs.build == 'all' || github.event.inputs.build == 'linux' }}
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-22.04
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-
|
||||
- name: Run Docker Container
|
||||
run: |
|
||||
docker run --rm \
|
||||
--volume "${{ github.workspace }}:/src/" \
|
||||
--env SPECFILE=./BTClockOTA.spec \
|
||||
ghcr.io/btclock/pyinstaller-wxpython-linux:latest &&
|
||||
mv dist/BTClockOTA dist/BTClockOTA-linux-amd64
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: linux-artifacts
|
||||
path: dist/
|
||||
release:
|
||||
needs: [build-macos, build-windows, build-linux]
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Get current block
|
||||
id: getBlockHeight
|
||||
run: echo "blockHeight=$(curl -s https://mempool.space/api/blocks/tip/height)" >> $GITHUB_OUTPUT
|
||||
- name: Get Windows Artifacts
|
||||
if: ${{ always() }}
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: windows-artifacts
|
||||
path: windows
|
||||
- name: Get macOS Artifacts
|
||||
if: ${{ always() }}
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: macos-artifacts
|
||||
path: macos
|
||||
- name: Get Linux Artifacts
|
||||
if: ${{ always() }}
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: linux-artifacts
|
||||
path: linux
|
||||
- name: Create release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
tag: ${{ steps.getBlockHeight.outputs.blockHeight }}
|
||||
commit: main
|
||||
name: release-${{ steps.getBlockHeight.outputs.blockHeight }}
|
||||
artifacts: "macos/**/*.dmg,macos/**/*.zip,windows/**/*.exe,linux/*"
|
||||
allowUpdates: true
|
||||
makeLatest: true
|
Loading…
Reference in a new issue