From 1d11fb551cfe9b4cfb1ab5964dbc52a21b4ba882 Mon Sep 17 00:00:00 2001 From: Brady Miller Date: Mon, 20 Jun 2022 17:38:10 -0700 Subject: [PATCH] mariadb 10.2 is end of life, so dropping support and ci testing (#5518) --- .github/workflows/test.yml | 92 ----------------------------- ci/apache_80_102/docker-compose.yml | 22 ------- 2 files changed, 114 deletions(-) delete mode 100644 ci/apache_80_102/docker-compose.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a15a75e2b72..887bd5c51d8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -744,98 +744,6 @@ jobs: build_test_common if: ${{ success() || failure() }} - build_apache_80_102: - name: PHP 8.0 - Apache - MariaDB 10.2 - runs-on: ubuntu-20.04 - env: - DOCKER_DIR: apache_80_102 - OPENEMR_DIR: /var/www/localhost/htdocs/openemr - CHROMIUM_INSTALL: "apk update; apk add --no-cache chromium chromium-chromedriver; export PANTHER_CHROME_DRIVER_BINARY=/usr/lib/chromium/chromedriver" - steps: - - uses: actions/checkout@v2 - - - name: Install PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.0' - - - name: Report PHP Version - run: php -v - - - name: Install npm package - uses: actions/setup-node@v1 - with: - node-version: '16' - - - name: Dockers environment start - run: | - source ci/ciLibrary.source - dockers_env_start - - - name: Main build - run: | - source ci/ciLibrary.source - composer_github_auth - main_build - - - name: CCDA build - run: | - source ci/ciLibrary.source - ccda_build - - - name: Install and configure - run: | - source ci/ciLibrary.source - install_configure - - - name: Unit testing - run: | - source ci/ciLibrary.source - build_test_unit - if: ${{ success() || failure() }} - - - name: E2e testing - run: | - source ci/ciLibrary.source - build_test_e2e - if: ${{ success() || failure() }} - - - name: Api testing - run: | - source ci/ciLibrary.source - build_test_api - if: ${{ success() || failure() }} - - - name: Fixtures testing - run: | - source ci/ciLibrary.source - build_test_fixtures - if: ${{ success() || failure() }} - - - name: Services testing - run: | - source ci/ciLibrary.source - build_test_services - if: ${{ success() || failure() }} - - - name: Validators testing - run: | - source ci/ciLibrary.source - build_test_validators - if: ${{ success() || failure() }} - - - name: Controllers testing - run: | - source ci/ciLibrary.source - build_test_controllers - if: ${{ success() || failure() }} - - - name: Common testing - run: | - source ci/ciLibrary.source - build_test_common - if: ${{ success() || failure() }} - build_apache_80_8: name: PHP 8.0 - Apache - MySQL 8 runs-on: ubuntu-20.04 diff --git a/ci/apache_80_102/docker-compose.yml b/ci/apache_80_102/docker-compose.yml deleted file mode 100644 index 569c5cfbf66..00000000000 --- a/ci/apache_80_102/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -# docker-compose.yml for travis ci testing -version: '3.1' -services: - mysql: - restart: always - image: mariadb:10.2 - command: ['mysqld','--character-set-server=utf8mb4'] - environment: - MYSQL_ROOT_PASSWORD: root - openemr: - restart: always - image: openemr/openemr:flex-3.15-8 - ports: - - 80:80 - - 443:443 - volumes: - - ../../:/var/www/localhost/htdocs/openemr - environment: - FORCE_NO_BUILD_MODE: "yes" - EMPTY: "yes" - depends_on: - - mysql