-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bumps MW requirements to 1.39+. * Requires PHP 7.4+ * Adds CI to run tests
- Loading branch information
Showing
14 changed files
with
205 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# These are supported funding model platforms | ||
|
||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
patreon: # Replace with a single Patreon username | ||
open_collective: smw | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
custom: ['https://www.semantic-mediawiki.org/wiki/Sponsorship'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
test: | ||
|
||
runs-on: ubuntu-22.04 | ||
continue-on-error: ${{ matrix.experimental }} | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- mediawiki_version: '1.39' | ||
smw_version: dev-master | ||
php_version: 8.1 | ||
database_type: mysql | ||
database_image: "mariadb:10" | ||
coverage: false | ||
experimental: false | ||
|
||
env: | ||
MW_VERSION: ${{ matrix.mediawiki_version }} | ||
SMW_VERSION: ${{ matrix.smw_version }} | ||
PHP_VERSION: ${{ matrix.php_version }} | ||
DB_TYPE: ${{ matrix.database_type }} | ||
DB_IMAGE: ${{ matrix.database_image }} | ||
|
||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Update submodules | ||
run: git submodule update --init --remote | ||
|
||
- name: Run tests | ||
run: make ci | ||
if: matrix.coverage == false | ||
|
||
- name: Run tests with coverage | ||
run: make ci-coverage | ||
if: matrix.coverage == true | ||
|
||
- name: Upload code coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: coverage/php/coverage.xml | ||
if: matrix.coverage == true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
\#*# | ||
.#* | ||
.svn | ||
!.* | ||
*~ | ||
*.kate-swp | ||
.*.swp | ||
.idea | ||
|
||
.idea/ | ||
|
||
.envrc | ||
.phpunit.result.cache | ||
|
||
composer.lock | ||
composer.phar | ||
|
||
npm-debug.log | ||
|
||
vendor/ | ||
extensions/ | ||
composer.lock | ||
node_modules/ | ||
conf/ | ||
.DS_Store | ||
.env | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "build"] | ||
path = build | ||
url = https://github.com/gesinn-it-pub/docker-compose-ci.git |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
-include .env | ||
export | ||
|
||
# setup for docker-compose-ci build directory | ||
# delete "build" directory to update docker-compose-ci | ||
|
||
ifeq (,$(wildcard ./build/)) | ||
$(shell git submodule update --init --remote) | ||
endif | ||
|
||
EXTENSION=SemanticResultFormats | ||
|
||
# docker images | ||
MW_VERSION?=1.39 | ||
PHP_VERSION?=8.1 | ||
DB_TYPE?=mysql | ||
DB_IMAGE?="mariadb:10" | ||
|
||
# extensions | ||
SMW_VERSION?=5.2.0 | ||
|
||
# composer | ||
# Enables "composer update" inside of extension | ||
COMPOSER_EXT?=true | ||
|
||
# nodejs | ||
# Enables node.js related tests and "npm install" | ||
# NODE_JS?=true | ||
|
||
# check for build dir and git submodule init if it does not exist | ||
include build/Makefile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.