Skip to content

Commit

Permalink
Enable PerformanceTests on CI eclipse-platform#882
Browse files Browse the repository at this point in the history
This is a temporary measure to control progress while working on
optimization in eclipse-platform#882
  • Loading branch information
basilevs committed Nov 27, 2023
1 parent cc5a6b0 commit 9f16927
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,20 @@ jobs:
-DfailIfNoTests=false
clean install
working-directory: eclipse.platform.swt
- name Performance tests
uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
with:
run: >-
mvn --batch-mode -V -U
-DforkCount=1
-Dcompare-version-with-baselines.skip=false
-Dmaven.compiler.failOnWarning=true
--fail-at-end
-DskipNativeTests=false
-DfailIfNoTests=false
-Dtest=PerformanceTests
test
working-directory: eclipse.platform.swt/tests/org.eclipse.swt.tests
- name: Upload Test Results for ${{ matrix.config.name }} / Java-${{ matrix.java }}
if: always()
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
Test_situational.class
Test_situational.class,
Test_org_eclipse_swt_widgets_Tree.class
})
public class PerformanceTests {
}

0 comments on commit 9f16927

Please sign in to comment.