Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-edge.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Flex Edge Dockers Nightly Build

# This workflow builds the OpenEMR Flex Docker images with Alpine Edge and PHP versions 8.3 and 8.4.
# This workflow builds the OpenEMR Flex Docker images with Alpine Edge and PHP versions 8.3, 8.4, and 8.5.
# And in this configuration will create following dockers (and tags):
# PHP 8.3: openemr/openemr:flex-edge-php-8.3
# PHP 8.4: openemr/openemr:flex-edge-php-8.4, openemr/openemr:flex-edge
# PHP 8.5: openemr/openemr:flex-edge-php-8.5
#
# php_versions is a JSON array of PHP versions to build.
#
Expand All @@ -22,6 +23,6 @@ jobs:
with:
is_default_flex: false
alpine_version: "edge"
php_versions: '["8.3", "8.4"]'
php_versions: '["8.3", "8.4", "8.5"]'
php_default: "8.4"
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/test-flex-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# development (ie. dev) mode (codebase used from a shared volume) and production (ie. prod) mode (codebase collected via git).
# - is_production_docker is required and needs to be false.
# - alpine_versions is set to edge
# - php_versions are set to 8.3 and 8.4
# - php_versions are set to 8.3, 8.4 and 8.5
# - is_flex_coverage_docker is set to true (so coverage will be collected in both dev mode and prod mode dockers)
# - flex_coverage_php_version is set to 8.4 (this is the docker's php versions to use for coverage collection)

Expand Down Expand Up @@ -32,6 +32,6 @@ jobs:
with:
is_production_docker: false
alpine_version: "edge"
php_versions: '["8.3", "8.4"]'
php_versions: '["8.3", "8.4", "8.5"]'
is_flex_coverage_docker: true
flex_coverage_php_version: '8.4'
Loading
Loading