Skip to content

Commit 36b365f

Browse files
authored
Use EISOP CF release again (#216)
1 parent 27d2334 commit 36b365f

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
@@ -32,7 +33,9 @@ jobs:
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
@@ -44,7 +47,9 @@ jobs:
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

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exec {
1313
dependencyResolutionManagement {
1414
versionCatalogs {
1515
libs {
16-
version("checkerFramework", "3.42.0-eisop4")
16+
version("checkerFramework", "3.42.0-eisop5")
1717

1818
library("checkerFramework-checker", "io.github.eisop", "checker").versionRef("checkerFramework")
1919
library("checkerFramework-checker-qual", "io.github.eisop", "checker-qual").versionRef("checkerFramework")

0 commit comments

Comments
 (0)