ci: run tests before builds and publish tag releases
Some checks failed
test-build-release / test (push) Failing after 11m8s
test-build-release / build-linux (push) Has been skipped

This commit is contained in:
Nix
2026-05-13 14:06:42 +08:00
parent 6cdafddd8e
commit c9be0d07bc

View File

@ -1,4 +1,4 @@
name: build-binaries
name: test-build-release
on:
push:
@ -9,7 +9,31 @@ on:
workflow_dispatch:
jobs:
linux:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install test deps
run: |
python -m venv .venv-ci
. .venv-ci/bin/activate
pip install --upgrade pip
pip install -r requirements.txt pytest
- name: Run tests
run: |
. .venv-ci/bin/activate
pytest -q
build-linux:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
@ -23,7 +47,7 @@ jobs:
- name: Install OS deps
run: |
sudo apt-get update
sudo apt-get install -y python3-venv libfuse2 wget
sudo apt-get install -y python3-venv libfuse2 wget jq
- name: Build Linux binary
run: bash build/build_linux.sh
@ -48,3 +72,42 @@ jobs:
dist/TrulyMEM.AppImage
if-no-files-found: error
retention-days: 30
- name: Create Gitea release
if: startsWith(github.ref, 'refs/tags/')
env:
GITEA_TOKEN: ${{ secrets.GITEA_RELEASE_TOKEN }}
TAG_NAME: ${{ github.ref_name }}
REPO: ${{ github.repository }}
SERVER_URL: ${{ github.server_url }}
run: |
test -n "$GITEA_TOKEN"
release_payload=$(jq -n \
--arg tag "$TAG_NAME" \
'{tag_name:$tag, name:$tag, draft:false, prerelease:false}')
release_response=$(curl -fsSL \
-H "Authorization: token $GITEA_TOKEN" \
-H "Content-Type: application/json" \
-X POST \
"$SERVER_URL/api/v1/repos/$REPO/releases" \
-d "$release_payload" \
|| true)
release_id=$(printf '%s' "$release_response" | jq -r '.id // empty')
if [ -z "$release_id" ]; then
release_id=$(curl -fsSL \
-H "Authorization: token $GITEA_TOKEN" \
"$SERVER_URL/api/v1/repos/$REPO/releases/tags/$TAG_NAME" | jq -r '.id')
fi
for file in dist/TrulyMEM dist/TrulyMEM.desktop dist/TrulyMEM.AppImage; do
name=$(basename "$file")
curl -fsSL \
-H "Authorization: token $GITEA_TOKEN" \
-H "Content-Type: application/octet-stream" \
--data-binary @"$file" \
"$SERVER_URL/api/v1/repos/$REPO/releases/$release_id/assets?name=$name"
done