From d70dcd26f11209c89167199742391d599149f602 Mon Sep 17 00:00:00 2001 From: Ricky Chilcott Date: Thu, 18 Jul 2024 13:58:09 -0400 Subject: [PATCH] Try without services for now --- .github/workflows/build.yml | 59 ++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 31 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 710fce0a8..021a8350f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,38 +6,35 @@ jobs: test: runs-on: ubuntu-latest - services: - ping: - image: ping:latest - - postgres: - image: postgres - ports: - - 5432:5432 - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - env: - POSTGRES_DB: thredded_gem_test - POSTGRES_USER: thredded - POSTGRES_PASSWORD: thredded + # services: + # postgres: + # image: postgres + # ports: + # - 5432:5432 + # options: >- + # --health-cmd pg_isready + # --health-interval 10s + # --health-timeout 5s + # --health-retries 5 + # env: + # POSTGRES_DB: thredded_gem_test + # POSTGRES_USER: thredded + # POSTGRES_PASSWORD: thredded - mysql: - image: mysql - ports: - - 3306:3306 - options: >- - --health-cmd mysqladmin ping - --health-interval 10s - --health-timeout 5s - --health-retries 3 - env: - MYSQL_DATABASE: thredded_gem_test - MYSQL_USER: thredded - MYSQL_PASSWORD: thredded - MYSQL_ROOT_PASSWORD: thredded + # mysql: + # image: mysql + # ports: + # - 3306:3306 + # options: >- + # --health-cmd mysqladmin ping + # --health-interval 10s + # --health-timeout 5s + # --health-retries 3 + # env: + # MYSQL_DATABASE: thredded_gem_test + # MYSQL_USER: thredded + # MYSQL_PASSWORD: thredded + # MYSQL_ROOT_PASSWORD: thredded strategy: fail-fast: false