Skip to content

feat(#2169): try to fix daily build #39

feat(#2169): try to fix daily build

feat(#2169): try to fix daily build #39

Workflow file for this run

name: daily
on:
schedule:
# Run load testing at 01:30 UTC every day
- cron: '30 1 * * *'
pull_request:
branches:
- master
paths-ignore: [ 'paper/**', 'sandbox/**' ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: |
SCRIPT="${GITHUB_WORKSPACE}/src/test/scripts/test-repetition.sh"
# Make script runnable
chmod +x "${SCRIPT}"
# Test eo-parser
sh "${SCRIPT} --max 10 --folder ${GITHUB_WORKSPACE}/eo-parser"
# Test eo-maven-plugin
sh "${SCRIPT} --max 10 --folder ${GITHUB_WORKSPACE}/eo-maven-plugin"
# Test eo-runtime
sh "${SCRIPT} --max 10 --folder ${GITHUB_WORKSPACE}/eo-runtime"
# @todo #2085:90min Add GitHub action step to create an issue.
# It would be convenient to add github action step that will create an
# issue in case of any of the tests is failed. We can do it through
# <a href="https://github.com/JasonEtco/create-an-issue">create-an-issue</a>
# action. Also, you can read about that problem in that discussion:
# <a href="https://github.com/orgs/community/discussions/25111">
# Create an issue case the workflow fails</a>