2019-12-06 15:49:30 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
2020-11-05 13:21:18 +00:00
|
|
|
runs-on: ubuntu-latest
|
2019-12-06 15:49:30 +00:00
|
|
|
env:
|
2019-12-08 19:41:28 +00:00
|
|
|
GOFLAGS: -mod=readonly
|
2019-12-06 15:49:30 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:10.8
|
|
|
|
ports:
|
|
|
|
- 5432
|
|
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2021-05-15 04:32:43 +00:00
|
|
|
postgres-ent:
|
|
|
|
image: postgres:10.8
|
|
|
|
ports:
|
|
|
|
- 5432
|
|
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2020-03-18 10:04:42 +00:00
|
|
|
mysql:
|
|
|
|
image: mysql:5.7
|
|
|
|
env:
|
|
|
|
MYSQL_ROOT_PASSWORD: root
|
|
|
|
MYSQL_DATABASE: dex
|
|
|
|
ports:
|
2021-04-26 09:01:24 +00:00
|
|
|
- 3306
|
2020-03-18 10:04:42 +00:00
|
|
|
options: --health-cmd "mysql -proot -e \"show databases;\"" --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2021-09-13 10:25:17 +00:00
|
|
|
mysql-ent:
|
|
|
|
image: mysql:5.7
|
|
|
|
env:
|
|
|
|
MYSQL_ROOT_PASSWORD: root
|
|
|
|
MYSQL_DATABASE: dex
|
|
|
|
ports:
|
|
|
|
- 3306
|
|
|
|
options: --health-cmd "mysql -proot -e \"show databases;\"" --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2019-12-06 15:49:30 +00:00
|
|
|
etcd:
|
2021-06-15 22:40:35 +00:00
|
|
|
image: gcr.io/etcd-development/etcd:v3.5.0
|
2019-12-06 15:49:30 +00:00
|
|
|
ports:
|
|
|
|
- 2379
|
|
|
|
env:
|
|
|
|
ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379
|
|
|
|
ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379
|
|
|
|
options: --health-cmd "ETCDCTL_API=3 etcdctl --endpoints http://localhost:2379 endpoint health" --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
|
|
|
keystone:
|
2021-03-11 07:32:25 +00:00
|
|
|
image: openio/openstack-keystone:rocky
|
2019-12-06 15:49:30 +00:00
|
|
|
ports:
|
|
|
|
- 5000
|
|
|
|
- 35357
|
|
|
|
options: --health-cmd "curl --fail http://localhost:5000/v3" --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up Go
|
2022-04-11 04:07:31 +00:00
|
|
|
uses: actions/setup-go@v3
|
2019-12-06 15:49:30 +00:00
|
|
|
with:
|
2022-03-16 11:12:26 +00:00
|
|
|
go-version: 1.18
|
2019-12-06 15:49:30 +00:00
|
|
|
|
|
|
|
- name: Checkout code
|
2022-03-02 04:08:38 +00:00
|
|
|
uses: actions/checkout@v3
|
2019-12-06 15:49:30 +00:00
|
|
|
|
2021-02-15 15:24:26 +00:00
|
|
|
- name: Start services
|
|
|
|
run: docker-compose -f docker-compose.test.yaml up -d
|
|
|
|
|
2021-04-19 12:45:12 +00:00
|
|
|
- name: Create kind cluster
|
2022-06-15 04:05:46 +00:00
|
|
|
uses: helm/kind-action@v1.3.0
|
2021-04-19 12:45:12 +00:00
|
|
|
with:
|
2021-06-01 16:33:08 +00:00
|
|
|
version: v0.11.1
|
|
|
|
node_image: kindest/node:v1.19.11@sha256:07db187ae84b4b7de440a73886f008cf903fcf5764ba8106a9fd5243d6f32729
|
2021-04-19 12:45:12 +00:00
|
|
|
|
2021-11-14 12:40:25 +00:00
|
|
|
- name: Download tool dependencies
|
|
|
|
run: make deps
|
|
|
|
|
2021-01-14 22:31:53 +00:00
|
|
|
- name: Test
|
2019-12-06 15:49:30 +00:00
|
|
|
run: make testall
|
|
|
|
env:
|
|
|
|
DEX_MYSQL_DATABASE: dex
|
|
|
|
DEX_MYSQL_USER: root
|
|
|
|
DEX_MYSQL_PASSWORD: root
|
|
|
|
DEX_MYSQL_HOST: 127.0.0.1
|
2021-04-26 09:01:24 +00:00
|
|
|
DEX_MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2021-09-13 10:25:17 +00:00
|
|
|
DEX_MYSQL_ENT_DATABASE: dex
|
|
|
|
DEX_MYSQL_ENT_USER: root
|
|
|
|
DEX_MYSQL_ENT_PASSWORD: root
|
|
|
|
DEX_MYSQL_ENT_HOST: 127.0.0.1
|
|
|
|
DEX_MYSQL_ENT_PORT: ${{ job.services.mysql-ent.ports[3306] }}
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2019-12-06 15:49:30 +00:00
|
|
|
DEX_POSTGRES_DATABASE: postgres
|
|
|
|
DEX_POSTGRES_USER: postgres
|
|
|
|
DEX_POSTGRES_PASSWORD: postgres
|
|
|
|
DEX_POSTGRES_HOST: localhost
|
|
|
|
DEX_POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2021-05-15 04:32:43 +00:00
|
|
|
DEX_POSTGRES_ENT_DATABASE: postgres
|
|
|
|
DEX_POSTGRES_ENT_USER: postgres
|
|
|
|
DEX_POSTGRES_ENT_PASSWORD: postgres
|
|
|
|
DEX_POSTGRES_ENT_HOST: localhost
|
|
|
|
DEX_POSTGRES_ENT_PORT: ${{ job.services.postgres-ent.ports[5432] }}
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2019-12-06 15:49:30 +00:00
|
|
|
DEX_ETCD_ENDPOINTS: http://localhost:${{ job.services.etcd.ports[2379] }}
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2021-02-15 15:24:26 +00:00
|
|
|
DEX_LDAP_HOST: localhost
|
|
|
|
DEX_LDAP_PORT: 389
|
|
|
|
DEX_LDAP_TLS_PORT: 636
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2019-12-06 15:49:30 +00:00
|
|
|
DEX_KEYSTONE_URL: http://localhost:${{ job.services.keystone.ports[5000] }}
|
|
|
|
DEX_KEYSTONE_ADMIN_URL: http://localhost:${{ job.services.keystone.ports[35357] }}
|
|
|
|
DEX_KEYSTONE_ADMIN_USER: demo
|
|
|
|
DEX_KEYSTONE_ADMIN_PASS: DEMO_PASS
|
2021-09-13 13:48:02 +00:00
|
|
|
|
2021-04-19 12:45:12 +00:00
|
|
|
DEX_KUBERNETES_CONFIG_PATH: ~/.kube/config
|
2019-12-06 15:49:30 +00:00
|
|
|
|
2021-01-14 22:31:53 +00:00
|
|
|
- name: Lint
|
2019-12-18 13:55:52 +00:00
|
|
|
run: make lint
|
2019-12-06 15:49:30 +00:00
|
|
|
|
|
|
|
# Ensure proto generation doesn't depend on external packages.
|
|
|
|
- name: Verify proto
|
|
|
|
run: make verify-proto
|