Skip to content

feat(composer): Update version in the composer.json file 5.0.0-rc1 #211

feat(composer): Update version in the composer.json file 5.0.0-rc1

feat(composer): Update version in the composer.json file 5.0.0-rc1 #211

Workflow file for this run

name: build
on:
push:
branches:
- 10.0.x
# Environment variables available to all jobs and steps in this workflow
env:
COMPOSER_MEMORY_LIMIT: -1
jobs:
build:
strategy:
fail-fast: false
matrix:
db:
- type: mysql
port: 3306
- type: pgsql
port: 5432
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@master
- uses: statcan/actions/composer@master
with:
args: install --prefer-dist --no-interaction
- name: Build out the Drupal infrastructure
run: |
export DB_TYPE=${{ matrix.db.type }}
export DB_PORT=${{ matrix.db.port }}
git clone --branch 10.0.x https://github.com/drupalwxt/docker-scaffold.git docker
make build
docker compose -f docker-compose.ci.yml up -d
docker ps -a
sleep 10
- name: Run installation and tests
run: |
export DB_TYPE=${{ matrix.db.type }}
export DB_PORT=${{ matrix.db.port }}
make drupal_install
make drupal_migrate
# Change ownership on html/core to allow files to be copied (see drupal_cs in Makefile)
sudo chown -R $(id -u) html/core
make test