Skip to content

Commit

Permalink
9.0.0
Browse files Browse the repository at this point in the history
- Revived the need for this package
- Consolidated all submodules from `stanford_profile` into the modules subdir.
  • Loading branch information
pookmish authored Oct 17, 2022
2 parents 1bba7fd + 0b4a73c commit 3847374
Show file tree
Hide file tree
Showing 677 changed files with 188,154 additions and 1,035 deletions.
65 changes: 0 additions & 65 deletions .circleci/config.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/back-to-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# .github/workflows/release.yml
name: Back to dev
on:
release:
types: [created]
jobs:
phpunit:
name: PHPUnit Coverage Tests
runs-on: ubuntu-latest
container:
image: pookmish/drupal8ci:latest
steps:
- uses: actions/checkout@v3
- name: Back to Dev
run: |
composer global require su-sws/stanford-caravan:dev-8.x-2.x
~/.composer/vendor/bin/sws-caravan back-to-dev $GITHUB_REF $GITHUB_WORKSPACE main
1 change: 1 addition & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
m_max_size: '1000'
l_max_size: '3000'
fail_if_xl: 'false'
message_if_xl: ''
- uses: banyan/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Tag
uses: K-Phoen/semver-release-action@master
with:
release_branch: master
release_branch: main
tag_format: "%major%.%minor%.%patch%"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57 changes: 54 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: PHPUnit Coverage Tests
runs-on: ubuntu-latest
container:
image: pookmish/drupal8ci:php8
image: pookmish/drupal8ci:latest
services:
mysql:
image: mysql:5.7
Expand All @@ -27,7 +27,12 @@ jobs:
run: |
composer global require su-sws/stanford-caravan:dev-8.x-2.x
~/.composer/vendor/bin/sws-caravan phpunit /var/www/html --extension-dir=$GITHUB_WORKSPACE/project --with-coverage
- name: Save Test Results
uses: actions/upload-artifact@v3
if: failure()
with:
name: unit-tests-results
path: /var/www/html/artifacts
acceptance:
name: Codeception Acceptance Tests
runs-on: ubuntu-latest
Expand All @@ -37,7 +42,8 @@ jobs:
DRUPAL_DATABASE_PASSWORD: drupal
DRUPAL_DATABASE_HOST: mysql
container:
image: pookmish/drupal8ci:php8
image: pookmish/drupal8ci:latest
options: '--network-alias drupal8ci'
services:
mysql:
image: mysql:5.7
Expand All @@ -57,3 +63,48 @@ jobs:
run: |
composer global require su-sws/stanford-caravan:dev-8.x-2.x
~/.composer/vendor/bin/sws-caravan codeception /var/www/html --extension-dir=$GITHUB_WORKSPACE/project --suites=acceptance
- name: Save Test Results
uses: actions/upload-artifact@v3
if: always()
with:
name: acceptance-tests-results
path: /var/www/html/artifacts
functional:
name: Codeception Functional Tests
runs-on: ubuntu-latest
env:
DRUPAL_DATABASE_NAME: drupal
DRUPAL_DATABASE_USERNAME: drupal
DRUPAL_DATABASE_PASSWORD: drupal
DRUPAL_DATABASE_HOST: mysql
container:
image: pookmish/drupal8ci:latest
options: '--network-alias=drupal8ci'
services:
selenium:
image: selenium/standalone-chrome
options: '--shm-size="2g"'
mysql:
image: mysql:5.7
env:
MYSQL_DATABASE: drupal
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
MYSQL_ROOT_PASSWORD: drupal
ports:
- 33306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v3
with:
path: project
- name: Run tests
run: |
composer global require su-sws/stanford-caravan:dev-8.x-2.x
~/.composer/vendor/bin/sws-caravan codeception /var/www/html --extension-dir=$GITHUB_WORKSPACE/project --suites=functional
- name: Save Test Results
uses: actions/upload-artifact@v3
if: always()
with:
name: functional-tests-results
path: /var/www/html/artifacts
112 changes: 0 additions & 112 deletions .gitignore

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Stanford Profile Helper

9.0.0
--------------------------------------------------------------------------------
_Release Date: 2022-10-17_

- Revived the need for this package
- Consolidated all submodules from `stanford_profile` into the modules subdir.

8.2.4
--------------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit 3847374

Please sign in to comment.