diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d168834ec11..503e9dccad3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -384,99 +384,6 @@ jobs: build_test_common if: ${{ success() || failure() }} - build_apache_83_111: - name: PHP 8.3 - Apache - MariaDB 11.1 (short term release) - runs-on: ubuntu-22.04 - env: - DOCKER_DIR: apache_83_111 - 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@v4 - - - name: Install PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.3' - - - name: Report PHP Version - run: php -v - - - name: Install npm package - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Main build - run: | - source ci/ciLibrary.source - composer_github_auth - main_build - - - name: CCDA build - run: | - source ci/ciLibrary.source - ccda_build - - - name: Dockers environment start - run: | - source ci/ciLibrary.source - dockers_env_start - sleep 60 - - - 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_83_1011: name: PHP 8.3 - Apache - MariaDB 10.11 runs-on: ubuntu-22.04 diff --git a/ci/apache_83_111/docker-compose.yml b/ci/apache_83_111/docker-compose.yml deleted file mode 100644 index 1c0ef4b3dc2..00000000000 --- a/ci/apache_83_111/docker-compose.yml +++ /dev/null @@ -1,21 +0,0 @@ -# docker-compose.yml for travis ci testing -services: - mysql: - restart: always - image: mariadb:11.1 - command: ['mariadbd','--character-set-server=utf8mb4'] - environment: - MYSQL_ROOT_PASSWORD: root - openemr: - restart: always - image: openemr/openemr:flex-3.20 - ports: - - 80:80 - - 443:443 - volumes: - - ../../:/var/www/localhost/htdocs/openemr - environment: - FORCE_NO_BUILD_MODE: "yes" - EMPTY: "yes" - depends_on: - - mysql