Skip to content

Commit f866d3d

Browse files
committed
using dist-docker.py in CI
1 parent 7b1272d commit f866d3d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,17 @@ on:
99

1010
jobs:
1111

12-
projects:
12+
docker-build:
13+
# this one doesn't use EvoMaster drivers
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout WFD
17+
uses: actions/checkout@v6
18+
- name: Build All With Docker
19+
run: python scripts/dist-docker.py
20+
21+
direct-builds:
22+
needs: docker-build
1323
runs-on: ${{ matrix.os }}
1424
strategy:
1525
matrix:
@@ -58,13 +68,13 @@ jobs:
5868
- name: Install EvoMaster client-java
5969
run: mvn clean install -DskipTests
6070
working-directory: evomaster/client-java
61-
- name: Setup JDK for EMB
71+
- name: Setup JDK for WFD
6272
uses: actions/setup-java@v5
6373
with:
6474
java-version: ${{ matrix.jdk-version }}
6575
distribution: 'zulu'
66-
- name: Checkout EMB
76+
- name: Checkout WFD
6777
uses: actions/checkout@v6
68-
- name: Build EMB
78+
- name: Build WFD
6979
run: ${{ matrix.command }}
7080
working-directory: ${{ matrix.folder }}

0 commit comments

Comments
 (0)