Platform Simple Installation #718
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
name: Platform Simple Installation | |
on: | |
schedule: | |
- cron: '0 0 * * 1,3,5' | |
workflow_dispatch: | |
push: | |
branches: [master] | |
repository_dispatch: | |
types: [qa] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
firefox: | |
image: selenium/node-firefox:3.141.59-gold | |
env: | |
HUB_HOST: hub | |
HUB_PORT: 4444 | |
steps: | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Checkout openmrs-core | |
uses: actions/checkout@v4 | |
with: | |
repository: openmrs/openmrs-core | |
- name: build platform | |
run: | | |
pwd | |
mvn clean install -DskipTests=true | |
cp webapp/target/openmrs.war ../ | |
- name: Checkout qaframework | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{github.repository}} | |
- name: run db and web containers | |
run: | | |
cp ../openmrs.war docker/ | |
cd docker | |
docker-compose -f docker-compose-platform-install.yml up -d | |
- name: wait for openmrs instance to start | |
run: while ! nc -z localhost 8080 </dev/null; do sleep 1; done | |
- name: Run qaframework on selenium | |
run: | | |
cd qaframework-bdd-tests | |
echo "cucumber.publish.enabled=true" > src/test/resources/cucumber.properties | |
mvn clean install -DskipTests=true | |
cp -f src/test/resources/org/openmrs/uitestframework/test-local-firefox.properties src/test/resources/org/openmrs/uitestframework/test.properties | |
npm run simpleCoreInstall | |
curl -sX POST -F messages=@target/cucumber.ndjson https://studio.cucumber.io/cucumber_project/results -H "project-access-token: ${{secrets.CUCUMBER_IO_TOKEN}}" -H "provider: github" -H "repo: ${{github.repository}}" -H "branch: master" -H "revision: ${{github.sha}}" |