@@ -19,11 +19,12 @@ jobs:
1919 with :
2020 repository : jspecify/jspecify
2121 path : jspecify
22- - name : Check out eisop/checker-framework
23- uses : actions/checkout@v4
24- with :
25- repository : eisop/checker-framework
26- path : checker-framework
22+ # Clone the EISOP CF if necessary:
23+ # - name: Check out eisop/checker-framework
24+ # uses: actions/checkout@v4
25+ # with:
26+ # repository: eisop/checker-framework
27+ # path: checker-framework
2728 - name : Set up Java
2829 uses : actions/setup-java@v4
2930 with :
3233 - name : Set up Gradle
3334 uses : gradle/gradle-build-action@v3
3435 - name : Build and Test
35- run : ./gradlew build conformanceTests demoTest --include-build ../jspecify --include-build ../checker-framework
36+ run : ./gradlew build conformanceTests demoTest --include-build ../jspecify
37+ # If a cloned EISOP CF is needed, use the following:
38+ # run: ./gradlew build conformanceTests demoTest --include-build ../jspecify --include-build ../checker-framework
3639 env :
3740 SHALLOW : 1
3841 JSPECIFY_CONFORMANCE_TEST_MODE : details
4447 working-directory : jspecify
4548 - name : Run Samples Tests
4649 if : always()
47- run : ./gradlew jspecifySamplesTest --include-build ../jspecify --include-build ../checker-framework
50+ run : ./gradlew jspecifySamplesTest --include-build ../jspecify
51+ # If a cloned EISOP CF is needed, use the following:
52+ # run: ./gradlew jspecifySamplesTest --include-build ../jspecify --include-build ../checker-framework
4853
4954 publish-snapshot :
5055 name : Publish Conformance Test Framework Snapshot
0 commit comments