Fix failing builds #3680
Workflow file for this run
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: All Browser Tests | |
on: | |
schedule: | |
- cron: '0 0 * * 1,3,5' | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
repository_dispatch: | |
types: [qa] | |
workflow_dispatch: | |
jobs: | |
test-on-browsers: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: qaframework-bdd-tests | |
strategy: | |
matrix: | |
browser: | |
- firefox | |
- chrome | |
services: | |
${{ matrix.browser }}: | |
image: selenium/node-${{ matrix.browser }}: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 qaframework | |
uses: actions/checkout@v4 | |
- name: Install Docker Compose | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
- name: Run db and web containers | |
run: | | |
docker-compose -f docker/docker-compose-refqa.yml up -d | |
- name: Wait for OpenMRS instance to start | |
run: | | |
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/openmrs/login.htm)" != "200" ]]; do sleep 1; done | |
- name: Run qaframework on ${{ matrix.browser }} | |
run: | | |
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-${{ matrix.browser }}.properties src/test/resources/org/openmrs/uitestframework/test.properties | |
npm run refappSelenium | |
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}}" |