Skip to content

Commit

Permalink
Add debugging output to OIDC CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sbreker committed Oct 16, 2024
1 parent ace2da7 commit 2c06501
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/oidc-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,31 @@ jobs:
sudo nginx -t
sudo systemctl restart nginx
- name: Dump contents of app.yml BEFORE copy
run: sudo cat plugins/arOidcPlugin/config/app.yml

- name: Update OIDC plugin app.yml file
run: sudo cp -v test/etc/oidc/arOidcPlugin/config/app.yml plugins/arOidcPlugin/config

- name: Dump contents of app.yml AFTER copy
run: sudo cat plugins/arOidcPlugin/config/app.yml

- name: Dump contents of setting.yml
run: |
sudo cat apps/qubit/config/settings.yml
- name: Dump contents of setting.yml 2
run: |
sudo cat config/settings.yml
- name: Update factories.yml to use oidcUser
run: |
sudo sed -i 's/class: myUser/class: oidcUser/' config/factories.yml
- name: Update settings.yml login module to oidc
run: |
sudo sed -i 's/login_module:\s*user/login_module: oidc/' apps/qubit/config/settings.yml
- name: Install OIDC Plugin
run: |
php symfony tools:atom-plugins add arOidcPlugin
Expand Down

0 comments on commit 2c06501

Please sign in to comment.