Initial achilles GA test #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: openldap profile (Linux and Mac) | |
on: push | |
jobs: | |
default: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
httpType: [http] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Docker on macOS | |
if: runner.os == 'macOS' | |
uses: douglascamata/setup-docker-macos-action@v1-alpha | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Create certs folder | |
run: mkdir -p ./certs | |
- name: Build traefik container | |
run: docker-compose --env-file .env up -d | |
- name: Build atlasdb profile | |
run: docker-compose --env-file .env --profile atlasdb up -d | |
- name: Build webapi profile with ldap enabled | |
run: SECURITY_AUTH_LDAP_ENABLED=true docker-compose --env-file .env --profile webapi-from-image up -d | |
- name: Test WebAPI info endpoint | |
run: | | |
sleep 30 | |
curl -s -k --retry 10 --retry-connrefused ${{matrix.httpType}}://127.0.0.1/WebAPI/info | |
- name: Build OpenLDAP | |
run: docker-compose --env-file .env --profile openldap up -d | |
- name: Test openldap auth in WebAPI | |
run: | | |
curl -d "login=user1&password=$(<./secrets/openldap/OPENLDAP_ACCOUNT_PASSWORDS)" -H "Content-Type: application/x-www-form-urlencoded" -X POST ${{matrix.httpType}}://127.0.0.1/WebAPI/user/login/ldap |