diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4b04acca..bfea4d686 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,11 +46,16 @@ jobs: shell: bash run: | sbt -v -Dfile.encoding=UTF-8 -Dsbt.supershell=never "crossTestBridges" "zincRoot/test" "zincScripted/Test/run" - - name: Build and test (3) + - name: Build and test (Scalac) (3) if: ${{ matrix.jobtype == 3 }} shell: bash run: | - sbt -v -Dfile.encoding=UTF-8 "runBenchmarks" + sbt -v -Dfile.encoding=UTF-8 "-Dbenchmark.pattern=.*Scalac.*" "runBenchmarks" + - name: Build and test (Shapeless) (3) + if: ${{ matrix.jobtype == 3 }} + shell: bash + run: | + sbt -v -Dfile.encoding=UTF-8 "-Dbenchmark.pattern=.*Shapeless.*" "runBenchmarks" - name: Build and test (4) if: ${{ matrix.jobtype == 4 }} shell: bash