Skip to content

Commit

Permalink
updates CI workflow file.
Browse files Browse the repository at this point in the history
- apply temporary fix for broken NVM
- add postgres to test matrix
- reduce moodle environments down to M4.3
- version bump on checkout action
  • Loading branch information
stopfstedt committed Aug 21, 2024
1 parent bb8ffdf commit 5ac4ef5
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,26 @@ on:
push:
pull_request:
schedule:
- cron: '33 2 * * 1' # weekly, on Monday morning
- cron: "33 2 * * 1" # weekly, on Monday morning

jobs:
test:
runs-on: ubuntu-latest

services:
postgres:
image: postgres:13
env:
POSTGRES_USER: "postgres"
POSTGRES_HOST_AUTH_METHOD: "trust"
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3

mariadb:
image: mariadb:10
env:
MYSQL_USER: 'root'
MYSQL_USER: "root"
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_CHARACTER_SET_SERVER: "utf8mb4"
MYSQL_COLLATION_SERVER: "utf8mb4_unicode_ci"
Expand All @@ -25,19 +34,13 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- php: '8.3'
moodle-branch: 'main'
database: 'mariadb'
- php: '8.3'
moodle-branch: 'MOODLE_404_STABLE'
database: 'mariadb'
- php: '8.2'
moodle-branch: 'MOODLE_403_STABLE'
database: 'mariadb'
php: ["8.1", "8.2"]
moodle-branch: ["MOODLE_403_STABLE"]
database: [pgsql, mariadb]

steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: plugin

Expand All @@ -57,7 +60,9 @@ jobs:
echo $(cd ci/bin; pwd) >> $GITHUB_PATH
echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH
sudo locale-gen en_AU.UTF-8
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
#echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
# Install nvm v0.39.7 (Temporary workaround for https://github.com/moodlehq/moodle-plugin-ci/issues/309).
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
- name: Install moodle-plugin-ci
run: |
Expand Down Expand Up @@ -103,10 +108,11 @@ jobs:
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpunit --fail-on-warning


- name: Behat features
if: ${{ !cancelled() }}
run: moodle-plugin-ci behat --profile chrome

- name: Mark cancelled jobs as failed.
if: ${{ cancelled() }}
run: exit 1
run: exit 1

0 comments on commit 5ac4ef5

Please sign in to comment.