diff options
author | Timothy Andrew <mail@timothyandrew.net> | 2017-07-07 03:25:18 +0000 |
---|---|---|
committer | Timothy Andrew <mail@timothyandrew.net> | 2017-07-07 04:54:30 +0000 |
commit | d53690b6e5be2dd5372b10e3bdec4d7ae8c30242 (patch) | |
tree | badbd7e218154f82325c7e0c4c67b113120ffcfe /config/gitlab.yml.example | |
parent | 49430c47d4d34072ff43cc1e35213317802055d7 (diff) | |
download | gitlab-ce-d53690b6e5be2dd5372b10e3bdec4d7ae8c30242.tar.gz |
Test logging in via the Authentiq OAuth provider in a feature spec.34737-authentiq-oauth-feature-spec
- The `migration:path-pg` build was previously failing when the Authentiq
feature spec was enabled by placing Authentiq configuration in the `test`
section of `gitlab.yml`
- The `migration:path-pg` task checks out an old revision of the
codebase (`v8.14.10`) and runs a `schema:load`. It then checks out the commit
under test, and runs `db:migrate`, to verify that migrations run without
errors.
- The problem here is that `v8.14.10` does not have the Authentiq module
installed, but is run with the `gitlab.yml` for `master`, which would contain
the `Authentiq` configuration in the `test` section.
- The solution was to use the `v8.14.10` `gitlab.yml` for the `schema:load`,
rather than the `gitlab.yml` from master.
Diffstat (limited to 'config/gitlab.yml.example')
-rw-r--r-- | config/gitlab.yml.example | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index 1eb209ac2be..dfc0424e2f5 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -661,7 +661,10 @@ test: client_id: 'YOUR_AUTH0_CLIENT_ID', client_secret: 'YOUR_AUTH0_CLIENT_SECRET', namespace: 'YOUR_AUTH0_DOMAIN' } } - + - { name: 'authentiq', + app_id: 'YOUR_CLIENT_ID', + app_secret: 'YOUR_CLIENT_SECRET', + args: { scope: 'aq:name email~rs address aq:push' } } ldap: enabled: false servers: |