Skip to content

Commit a637679

Browse files
committed
Add force option to allow running devstack on unsupported distro
By setting `force: "yes"` when calling devstack-action, this allows running devstack on unsupported distros. This is especially useful now that github retires the Ubuntu 18.04 runner. https://opendev.org/openstack/devstack/src/commit/ab8e51eb49/stack.sh#L230-L239
1 parent 735f39a commit a637679

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

action.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ inputs:
1616
enable_workaround_docker_io:
1717
description: 'Enable or disable workaround for docker.io'
1818
default: 'true'
19+
force:
20+
description: 'Allow running devstack on unsupported distro'
21+
default: 'no'
1922
runs:
2023
using: "composite"
2124
steps:
@@ -73,6 +76,8 @@ runs:
7376
working-directory: ./devstack
7477
shell: bash
7578
- name: Run devstack
79+
env:
80+
FORCE: ${{ inputs.force }}
7681
run: ./stack.sh
7782
working-directory: ./devstack
7883
shell: bash

0 commit comments

Comments
 (0)