Skip to content

Commit

Permalink
Use EISOP CF release again (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmdietl authored Dec 26, 2024
1 parent 27d2334 commit 36b365f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ jobs:
with:
repository: jspecify/jspecify
path: jspecify
- name: Check out eisop/checker-framework
uses: actions/checkout@v4
with:
repository: eisop/checker-framework
path: checker-framework
# Clone the EISOP CF if necessary:
# - name: Check out eisop/checker-framework
# uses: actions/checkout@v4
# with:
# repository: eisop/checker-framework
# path: checker-framework
- name: Set up Java
uses: actions/setup-java@v4
with:
Expand All @@ -32,7 +33,9 @@ jobs:
- name: Set up Gradle
uses: gradle/gradle-build-action@v3
- name: Build and Test
run: ./gradlew build conformanceTests demoTest --include-build ../jspecify --include-build ../checker-framework
run: ./gradlew build conformanceTests demoTest --include-build ../jspecify
# If a cloned EISOP CF is needed, use the following:
# run: ./gradlew build conformanceTests demoTest --include-build ../jspecify --include-build ../checker-framework
env:
SHALLOW: 1
JSPECIFY_CONFORMANCE_TEST_MODE: details
Expand All @@ -44,7 +47,9 @@ jobs:
working-directory: jspecify
- name: Run Samples Tests
if: always()
run: ./gradlew jspecifySamplesTest --include-build ../jspecify --include-build ../checker-framework
run: ./gradlew jspecifySamplesTest --include-build ../jspecify
# If a cloned EISOP CF is needed, use the following:
# run: ./gradlew jspecifySamplesTest --include-build ../jspecify --include-build ../checker-framework

publish-snapshot:
name: Publish Conformance Test Framework Snapshot
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exec {
dependencyResolutionManagement {
versionCatalogs {
libs {
version("checkerFramework", "3.42.0-eisop4")
version("checkerFramework", "3.42.0-eisop5")

library("checkerFramework-checker", "io.github.eisop", "checker").versionRef("checkerFramework")
library("checkerFramework-checker-qual", "io.github.eisop", "checker-qual").versionRef("checkerFramework")
Expand Down

0 comments on commit 36b365f

Please sign in to comment.