v569 Build Test 1

Fixing 'datas' _location pyinstaller thing
Moving macOS to diff compression
Moving to Python 3.11
This commit is contained in:
Hydrus Network Developer 2024-04-01 13:40:20 -05:00
parent a99ab83ecb
commit 4a485164b4
No known key found for this signature in database
GPG Key ID: 76249F053212133C
8 changed files with 8 additions and 105 deletions

View File

@ -1,101 +0,0 @@
name: Build Containers
on:
push:
tags:
- 'v*'
jobs:
build-client:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=tag
labels: |
org.opencontainers.image.title=Hydrus Network
org.opencontainers.image.description=A personal booru-style media tagger that can import files and tags from your hard drive and popular websites.
org.opencontainers.image.vendor=hydrusnetwork
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
file: ./static/build_files/docker/client/Dockerfile
platforms: linux/amd64,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
build-server:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=tag,prefix=server-
type=raw,enable=true,prefix=,suffix=,value=server
flavor: |
latest=false
labels: |
org.opencontainers.image.title=Hydrus Network Server
org.opencontainers.image.description=A personal booru-style media tagger that can import files and tags from your hard drive and popular websites.
org.opencontainers.image.vendor=hydrusnetwork
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
file: ./static/build_files/docker/server/Dockerfile
platforms: linux/amd64,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@ -17,7 +17,7 @@ jobs:
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'
architecture: x64
-
name: APT Install

View File

@ -15,7 +15,7 @@ jobs:
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'
-
name: Build docs to /help
run: |
@ -71,7 +71,7 @@ jobs:
run: |
cd $GITHUB_WORKSPACE
temp_dmg="$(mktemp).dmg"
hdiutil create "$temp_dmg" -ov -volname "HydrusNetwork" -fs HFS+ -format UDZO -srcfolder "$GITHUB_WORKSPACE/build/$(head -n 1 triple.txt)/release"
hdiutil create "$temp_dmg" -ov -volname "HydrusNetwork" -fs HFS+ -format ULFO -srcfolder "$GITHUB_WORKSPACE/build/$(head -n 1 triple.txt)/release"
mv "$temp_dmg" Hydrus.Network.${{ env.version_short }}.-.macOS.-.App.dmg
-
name: Upload Files

View File

@ -17,7 +17,7 @@ jobs:
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'
architecture: x64
-
name: Pip Install

View File

@ -36,6 +36,7 @@ exe = EXE(pyz,
[],
exclude_binaries=True,
name='hydrus_client',
contents_directory='.',
debug=False,
bootloader_ignore_signals=False,
strip=False,

View File

@ -22,6 +22,7 @@ exe = EXE(pyz,
[],
exclude_binaries=True,
name='hydrus_server',
contents_directory='.',
debug=False,
bootloader_ignore_signals=False,
strip=False,

View File

@ -41,6 +41,7 @@ exe = EXE(pyz,
[],
exclude_binaries=True,
name='hydrus_client',
contents_directory='.',
debug=False,
bootloader_ignore_signals=False,
strip=False,

View File

@ -22,6 +22,7 @@ exe = EXE(pyz,
[],
exclude_binaries=True,
name='hydrus_server',
contents_directory='.',
debug=False,
bootloader_ignore_signals=False,
strip=False,