1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
networks:
integration_test_network:
services:
openldap:
image: osixia/openldap:1.4.0
networks:
integration_test_network:
aliases:
- ldap.example.org
- cert.mismatch.example.org
environment:
LDAP_TLS_VERIFY_CLIENT: "try"
LDAP_SEED_INTERNAL_LDIF_PATH: "/ldif"
healthcheck:
test: ["CMD", "ldapsearch", "-x", "-s", "base"]
interval: 60s
start_period: 30s
timeout: 5s
retries: 1
hostname: "ldap.example.org"
volumes:
- ./test/fixtures/ldif:/ldif:ro
ci-3.0:
image: ruby:3.0
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
ci-3.1:
image: ruby:3.1
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
ci-3.2:
image: ruby:3.2
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
ci-3.3:
image: ruby:3.3
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
ci-3.4:
image: ruby:3.4
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
# https://github.com/flavorjones/truffleruby/pkgs/container/truffleruby
ci-truffleruby:
image: ghcr.io/flavorjones/truffleruby:stable
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
ci-jruby-9.3:
image: jruby:9.3
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
ci-jruby-9.4:
image: jruby:9.4
command: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code
|