Skip to content

Commit

Permalink
tmp: allow mixed versions in sample tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlugter committed Aug 19, 2024
1 parent b58cfe0 commit ae61ab7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ jobs:
- name: Test Scala Projection gRPC sample Shopping Cart
run: |-
cd samples/grpc/shopping-cart-service-scala
sbt test -Dakka-projection.version=`cat ~/.version`
sbt "clean; ++3.3.3!; test;" -Dakka-projection.version=`cat ~/.version`
sbt test -Dakka-projection.version=`cat ~/.version` -Dakka.fail-mixed-versions=off
sbt "clean; ++3.3.3!; test;" -Dakka-projection.version=`cat ~/.version` -Dakka.fail-mixed-versions=off
- name: Compile Scala Projection gRPC sample Analytics
run: |-
Expand All @@ -183,7 +183,7 @@ jobs:
- name: Compile Java Projection gRPC sample Shopping Cart
run: |-
cd samples/grpc/shopping-cart-service-java
mvn test -nsu -ntp -Dakka-projection.version=`cat ~/.version`
mvn test -nsu -ntp -Dakka-projection.version=`cat ~/.version` -Dakka.fail-mixed-versions=off
- name: Compile Java Projection gRPC sample Analytics
run: |-
Expand Down Expand Up @@ -226,8 +226,8 @@ jobs:
- name: Test Scala Projection gRPC IoT service sample
run: |-
cd samples/grpc/iot-service-scala
sbt test -Dakka-projection.version=`cat ~/.version`
sbt "clean; ++3.3.3!; test;" -Dakka-projection.version=`cat ~/.version`
sbt test -Dakka-projection.version=`cat ~/.version` -Dakka.fail-mixed-versions=off
sbt "clean; ++3.3.3!; test;" -Dakka-projection.version=`cat ~/.version` -Dakka.fail-mixed-versions=off
- name: Compile Java Projection gRPC IoT service sample
run: |-
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
# This will likely be quite noisy, logging failures to connect to restaurant-drone-deliveries service
target/native-image/local-drone-control &
DRONE_CONTROL_PID=$!
sbt "Test/runMain drones.DroneClientTestApp 127.0.0.1 8080" -Dakka-projection.version=`cat ~/.version`
sbt "Test/runMain drones.DroneClientTestApp 127.0.0.1 8080" -Dakka-projection.version=`cat ~/.version` -Dakka.fail-mixed-versions=off
kill -9 $DRONE_CONTROL_PID
- name: Set up GraalVM 21
Expand Down

0 comments on commit ae61ab7

Please sign in to comment.