summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSeth Foster <fosterseth@users.noreply.github.com>2024-07-29 21:13:09 +0200
committerGitHub <noreply@github.com>2024-07-29 21:13:09 +0200
commita41766090e30d117e39d4646f67f20a8c2c00841 (patch)
treeee400654123df503314ce659fbb8999e8b334595 /.github
parentBump django-ansible-base to 2024.7.17 (#15373) (diff)
downloadawx-a41766090e30d117e39d4646f67f20a8c2c00841.tar.xz
awx-a41766090e30d117e39d4646f67f20a8c2c00841.zip
Make ui_next the default UI (#15405)
Change django url dispatcher to serve up ui_next files instead of old ui files Old UI will not be served with this change Github CI still runs old ui tests (to be removed in another PR) Remove the Github workflows that build old UI --------- Signed-off-by: Seth Foster <fosterbseth@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/actions/run_awx_devel/action.yml10
-rw-r--r--.github/workflows/devel_images.yml12
-rw-r--r--.github/workflows/stage.yml11
3 files changed, 0 insertions, 33 deletions
diff --git a/.github/actions/run_awx_devel/action.yml b/.github/actions/run_awx_devel/action.yml
index 9ce4a0fbfe..8144f3c26b 100644
--- a/.github/actions/run_awx_devel/action.yml
+++ b/.github/actions/run_awx_devel/action.yml
@@ -57,16 +57,6 @@ runs:
awx-manage update_password --username=admin --password=password
EOSH
- - name: Build UI
- # This must be a string comparison in composite actions:
- # https://github.com/actions/runner/issues/2238
- if: ${{ inputs.build-ui == 'true' }}
- shell: bash
- run: |
- docker exec -i tools_awx_1 sh <<-EOSH
- make ui-devel
- EOSH
-
- name: Get instance data
id: data
shell: bash
diff --git a/.github/workflows/devel_images.yml b/.github/workflows/devel_images.yml
index 07975f4b39..0aa661d27a 100644
--- a/.github/workflows/devel_images.yml
+++ b/.github/workflows/devel_images.yml
@@ -62,18 +62,6 @@ jobs:
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- - name: Setup node and npm for old UI build
- uses: actions/setup-node@v2
- with:
- node-version: '16'
- if: matrix.build-targets.image-name == 'awx'
-
- - name: Prebuild old-UI for awx image (to speed up build process)
- run: |
- sudo apt-get install gettext
- make ui-release
- if: matrix.build-targets.image-name == 'awx'
-
- name: Setup node and npm for the new UI build
uses: actions/setup-node@v2
with:
diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml
index d348278eff..00900aa450 100644
--- a/.github/workflows/stage.yml
+++ b/.github/workflows/stage.yml
@@ -89,17 +89,6 @@ jobs:
run: |
cp ../awx-logos/awx/ui/client/assets/* awx/ui/public/static/media/
- - name: Setup node and npm for old UI build
- uses: actions/setup-node@v2
- with:
- node-version: '16'
-
- - name: Prebuild old UI for awx image (to speed up build process)
- working-directory: awx
- run: |
- sudo apt-get install gettext
- make ui-release
-
- name: Setup node and npm for new UI build
uses: actions/setup-node@v2
with: