chore: remove deploy diagnostic test workflows
This commit is contained in:
@@ -1,11 +0,0 @@
|
|||||||
name: Deploy Test
|
|
||||||
run-name: Deploy Test
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo "hello"
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
name: Deploy Test2
|
|
||||||
run-name: Deploy Test2
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DEPLOY_PATH: /home/projekte_bao/openclaw/data/openclaw/workspace/nexus
|
|
||||||
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
||||||
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
|
|
||||||
steps:
|
|
||||||
- run: echo "hello $DEPLOY_PATH"
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
name: Deploy Test3
|
|
||||||
run-name: Deploy Test3
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DEPLOY_PATH: /home/projekte_bao/openclaw/data/openclaw/workspace/nexus
|
|
||||||
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
||||||
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
|
|
||||||
ENV_JWT_KEY: ${{ secrets.ENV_JWT_KEY }}
|
|
||||||
ENV_OPENCLAW_TOKEN: ${{ secrets.ENV_OPENCLAW_TOKEN }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Resolve Version
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION=$(cat VERSION | tr -d '[:space:]')
|
|
||||||
echo "version=${VERSION}" >> "$GITEA_OUTPUT"
|
|
||||||
- name: Prepare env
|
|
||||||
run: |
|
|
||||||
cat > "${ENV_TMPFILE}" <<ENVEOF
|
|
||||||
POSTGRES_PASSWORD=${ENV_POSTGRES_PASSWORD}
|
|
||||||
ENVEOF
|
|
||||||
echo "OK"
|
|
||||||
- name: Health Check
|
|
||||||
run: |
|
|
||||||
curl -sf --max-time 10 https://nexus.noveria.net/health && echo "OK"
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
name: Deploy Test4
|
|
||||||
run-name: Deploy Test4
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
||||||
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
- run: echo "OK"
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
name: Deploy Test5
|
|
||||||
run-name: Deploy Test5
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
- name: Resolve Version
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION=$(cat VERSION | tr -d '[:space:]')
|
|
||||||
echo "version=${VERSION}" >> "$GITEA_OUTPUT"
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
name: Deploy Test6
|
|
||||||
run-name: Deploy Test6
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
||||||
DEPLOY_PATH: /home/test
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
- name: Test heredoc
|
|
||||||
run: |
|
|
||||||
HOST_OWNER_PASSWORD="testpass"
|
|
||||||
cat > "${ENV_TMPFILE}" <<ENVEOF
|
|
||||||
POSTGRES_DB=nexus
|
|
||||||
POSTGRES_USER=nexus
|
|
||||||
POSTGRES_PASSWORD=secret
|
|
||||||
JWT_KEY=key123
|
|
||||||
OWNER_PASSWORD=${HOST_OWNER_PASSWORD}
|
|
||||||
ENVEOF
|
|
||||||
echo "OK"
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
name: Deploy Test7
|
|
||||||
run-name: Deploy Test7
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
- name: Test heredoc quoted
|
|
||||||
run: |
|
|
||||||
HOST_PW="testpass"
|
|
||||||
cat > "${ENV_TMPFILE}" << 'ENVEOF'
|
|
||||||
POSTGRES_DB=nexus
|
|
||||||
POSTGRES_PASSWORD=secret
|
|
||||||
OWNER_PASSWORD=nonexpand
|
|
||||||
ENVEOF
|
|
||||||
echo "OK"
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
name: Deploy Test8
|
|
||||||
run-name: Deploy Test8
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
||||||
DEPLOY_PATH: /home/projekte_bao/openclaw/data/openclaw/workspace/nexus
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
- name: Prepare env
|
|
||||||
run: |
|
|
||||||
echo "POSTGRES_DB=nexus" > "${ENV_TMPFILE}"
|
|
||||||
echo "POSTGRES_PASSWORD=secret" >> "${ENV_TMPFILE}"
|
|
||||||
echo "OK"
|
|
||||||
- name: Health Check
|
|
||||||
run: |
|
|
||||||
curl -sf --max-time 10 https://nexus.noveria.net/health && echo "OK"
|
|
||||||
Reference in New Issue
Block a user