Skip to content

Commit

Permalink
Merge pull request #1900 from nextcloud/devel
Browse files Browse the repository at this point in the history
Debian 12 support
  • Loading branch information
theCalcaholic authored Apr 28, 2024
2 parents 7b46013 + 2d1345f commit 263bbbc
Show file tree
Hide file tree
Showing 34 changed files with 1,575 additions and 494 deletions.
35 changes: 35 additions & 0 deletions .github/actions/create-test-instance-bullseye/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Create Test VM
description: Create NCP instance for testing in the Hetzner cloud
inputs:
version:
description: version (git rev / tag / branch) to install
required: true
uid:
description: A unique ID for labeling/naming generated resources
required: true
hcloud_token:
description: A auth token for Hetzner cloud
required: true
server_type:
description: Server type to use for hetzner servers
required: true
default: "cx11"

outputs:
server_address:
description: Adress of the test instance
snapshot_id:
description: ID of the generated postinstall snapshot
test_server_id:
description: ID of the created test server
runs:
using: docker
image: docker://thecalcaholic/ncp-test-automation:bullseye

env:
HCLOUD_TOKEN: ${{ inputs.hcloud_token }}
UID: ${{ inputs.uid }}
SERVER_TYPE: ${{ inputs.server_type }}
args:
- /ncp-test-automation/bin/actions/create-test-instance.sh
- ${{ inputs.version }}
2 changes: 1 addition & 1 deletion .github/actions/create-test-instance/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ outputs:
description: ID of the created test server
runs:
using: docker
image: docker://thecalcaholic/ncp-test-automation
image: docker://thecalcaholic/ncp-test-automation:bookworm

env:
HCLOUD_TOKEN: ${{ inputs.hcloud_token }}
Expand Down
Loading

0 comments on commit 263bbbc

Please sign in to comment.