Downgrading upload/download artifacts.
Some checks failed
Tests / Setup and Checkout (push) Failing after 12m3s
Tests / Backend Setup (Python 3.13 + uv + Environment) (push) Has been skipped
Tests / Frontend Setup (Node.js 24 + Yarn Berry + Build) (push) Has been skipped
Tests / Backend Tests (Python 3.13 + uv) (push) Has been skipped
Tests / Frontend Tests (TypeScript + Vue + Yarn Berry) (push) Has been skipped
Some checks failed
Tests / Setup and Checkout (push) Failing after 12m3s
Tests / Backend Setup (Python 3.13 + uv + Environment) (push) Has been skipped
Tests / Frontend Setup (Node.js 24 + Yarn Berry + Build) (push) Has been skipped
Tests / Backend Tests (Python 3.13 + uv) (push) Has been skipped
Tests / Frontend Tests (TypeScript + Vue + Yarn Berry) (push) Has been skipped
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
@@ -46,6 +46,12 @@ jobs:
|
|||||||
|
|
||||||
# Detect runner name with better logic
|
# Detect runner name with better logic
|
||||||
DETECTED_RUNNER="${GITEA_RUNNER_NAME:-${RUNNER_NAME:-${ACT_RUNNER_NAME:-${HOSTNAME:-unknown}}}}"
|
DETECTED_RUNNER="${GITEA_RUNNER_NAME:-${RUNNER_NAME:-${ACT_RUNNER_NAME:-${HOSTNAME:-unknown}}}}"
|
||||||
|
|
||||||
|
# Try to extract runner from job container name
|
||||||
|
if [ -n "${JOB_CONTAINER_NAME}" ]; then
|
||||||
|
echo "Job Container: ${JOB_CONTAINER_NAME}"
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Detected Runner: $DETECTED_RUNNER"
|
echo "Detected Runner: $DETECTED_RUNNER"
|
||||||
|
|
||||||
# Show system info
|
# Show system info
|
||||||
@@ -88,7 +94,7 @@ jobs:
|
|||||||
echo "✓ Repository checkout completed"
|
echo "✓ Repository checkout completed"
|
||||||
|
|
||||||
- name: Upload source code
|
- name: Upload source code
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: source-code
|
name: source-code
|
||||||
path: |
|
path: |
|
||||||
@@ -109,7 +115,7 @@ jobs:
|
|||||||
echo "Runner: $RUNNER | User: $(whoami) | OS: $(uname -s)"
|
echo "Runner: $RUNNER | User: $(whoami) | OS: $(uname -s)"
|
||||||
|
|
||||||
- name: Download source code
|
- name: Download source code
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: source-code
|
name: source-code
|
||||||
path: .
|
path: .
|
||||||
@@ -157,7 +163,7 @@ jobs:
|
|||||||
echo "✓ Backend environment setup complete"
|
echo "✓ Backend environment setup complete"
|
||||||
|
|
||||||
- name: Upload backend environment
|
- name: Upload backend environment
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: backend-environment
|
name: backend-environment
|
||||||
path: |
|
path: |
|
||||||
@@ -178,7 +184,7 @@ jobs:
|
|||||||
echo "Runner: $RUNNER | User: $(whoami) | OS: $(uname -s)"
|
echo "Runner: $RUNNER | User: $(whoami) | OS: $(uname -s)"
|
||||||
|
|
||||||
- name: Download source code
|
- name: Download source code
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: source-code
|
name: source-code
|
||||||
path: .
|
path: .
|
||||||
@@ -242,7 +248,7 @@ jobs:
|
|||||||
echo "✓ Build successful ($(du -sh dist/ | cut -f1))"
|
echo "✓ Build successful ($(du -sh dist/ | cut -f1))"
|
||||||
|
|
||||||
- name: Upload frontend environment
|
- name: Upload frontend environment
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: frontend-environment
|
name: frontend-environment
|
||||||
path: |
|
path: |
|
||||||
@@ -263,7 +269,7 @@ jobs:
|
|||||||
echo "Runner: $RUNNER | User: $(whoami)"
|
echo "Runner: $RUNNER | User: $(whoami)"
|
||||||
|
|
||||||
- name: Download backend environment
|
- name: Download backend environment
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: backend-environment
|
name: backend-environment
|
||||||
path: .
|
path: .
|
||||||
@@ -308,7 +314,7 @@ jobs:
|
|||||||
echo "Runner: $RUNNER | User: $(whoami)"
|
echo "Runner: $RUNNER | User: $(whoami)"
|
||||||
|
|
||||||
- name: Download frontend environment
|
- name: Download frontend environment
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: frontend-environment
|
name: frontend-environment
|
||||||
path: .
|
path: .
|
||||||
|
|||||||
Reference in New Issue
Block a user