diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-08-22 19:48:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 19:48:56 +0200 |
commit | 78f345c48694628d36b62728512898f326b6c9f4 (patch) | |
tree | 9def676edb9468ae3250fe34e255352e3a769c23 /.github/workflows | |
parent | fix: avoid calling undefined method for anonymous users (#15440) (diff) | |
download | awx-78f345c48694628d36b62728512898f326b6c9f4.tar.xz awx-78f345c48694628d36b62728512898f326b6c9f4.zip |
Remove old UI (#15414)
* Remove source code for old UI
* Rename ui-next to ui
* Remove license scan for javascript dependencies
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 7 | ||||
-rw-r--r-- | .github/workflows/devel_images.yml | 2 | ||||
-rw-r--r-- | .github/workflows/stage.yml | 2 |
3 files changed, 3 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca30e2a1a2..0e67e24afa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,12 +31,7 @@ jobs: command: /start_tests.sh test_collection_all - name: api-schema command: /start_tests.sh detect-schema-change SCHEMA_DIFF_BASE_BRANCH=${{ github.event.pull_request.base.ref }} - - name: ui-lint - command: make ui-lint - - name: ui-test-screens - command: make ui-test-screens - - name: ui-test-general - command: make ui-test-general + steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/devel_images.yml b/.github/workflows/devel_images.yml index 0aa661d27a..f490fcb746 100644 --- a/.github/workflows/devel_images.yml +++ b/.github/workflows/devel_images.yml @@ -70,7 +70,7 @@ jobs: - name: Prebuild new UI for awx image (to speed up build process) run: | - make ui-next + make ui if: matrix.build-targets.image-name == 'awx' - name: Build and push AWX devel images diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 00900aa450..1e6f8e5fd6 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -96,7 +96,7 @@ jobs: - name: Prebuild new UI for awx image (to speed up build process) working-directory: awx - run: make ui-next + run: make ui - name: Set build env variables run: | |