This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch event/pagination in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit d2f881edd5a73e523c8f1603c62332a146eddc82 Author: kezhenxu94 <[email protected]> AuthorDate: Wed Jul 7 18:13:37 2021 +0800 perf: optimize Groovy-based LAL DSL with static compilation Groovy naturally supports many dynamic features that we don't benefit for now but cost performance loss, in this patch we compile our Groovy-based DSL scripts statically to optimize performance. --- .github/workflows/e2e.jdk-versions.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/e2e.jdk-versions.yaml b/.github/workflows/e2e.jdk-versions.yaml index b4236d6..705516f 100644 --- a/.github/workflows/e2e.jdk-versions.yaml +++ b/.github/workflows/e2e.jdk-versions.yaml @@ -20,6 +20,9 @@ on: pull_request: schedule: - cron: '0 18 * * *' + push: + branches: + - test/* concurrency: group: e2e-jdk-versions-${{ github.event.pull_request.number || github.ref }} @@ -63,6 +66,11 @@ jobs: uses: ./.github/actions/e2e-test with: test_class: org.apache.skywalking.e2e.simple.SimpleE2E + - uses: actions/[email protected] + continue-on-error: true + with: + name: logs + path: $GITHUB_WORKSPACE/logs Single: if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
