diff options
author | jessicamack <jmack@redhat.com> | 2024-10-01 01:19:24 +0200 |
---|---|---|
committer | jessicamack <jmack@redhat.com> | 2024-10-16 16:50:34 +0200 |
commit | 42420ebde62695123966c861c730504814915bcb (patch) | |
tree | 5f84d76ece4afc863df6d3bb7956ecb159ef5ecd /.github/workflows | |
parent | 3rd party auth removal cleanup (diff) | |
download | awx-42420ebde62695123966c861c730504814915bcb.tar.xz awx-42420ebde62695123966c861c730504814915bcb.zip |
remove oauth use
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5087175710..c60d28f803 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -291,7 +291,8 @@ jobs: echo "::remove-matcher owner=python::" # Disable annoying annotations from setup-python echo '[general]' > ~/.tower_cli.cfg echo 'host = https://${{ steps.awx.outputs.ip }}:8043' >> ~/.tower_cli.cfg - echo 'oauth_token = ${{ steps.awx.outputs.admin-token }}' >> ~/.tower_cli.cfg + echo 'username = admin' >> ~/.tower_cli.cfg + echo 'password = password' >> ~/.tower_cli.cfg echo 'verify_ssl = false' >> ~/.tower_cli.cfg TARGETS="$(ls awx_collection/tests/integration/targets | grep '${{ matrix.target-regex.regex }}' | tr '\n' ' ')" make COLLECTION_VERSION=100.100.100-git COLLECTION_TEST_TARGET="--requirements $TARGETS" test_collection_integration |