From 98c69183452236c663e125231c05048db37028df Mon Sep 17 00:00:00 2001 From: Luca Foppiano Date: Thu, 4 Jul 2024 16:44:16 +0900 Subject: [PATCH] more sophisticated actions --- .github/workflows/ci-build.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 247aa3fb..6bd18d43 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -23,7 +23,7 @@ jobs: - name: Checkout entity-fishing uses: actions/checkout@v4 with: - path: . + path: ./entity-fishing - uses: actions/checkout@v4 - name: Set up JDK 11 uses: actions/setup-java@v4 @@ -31,5 +31,15 @@ jobs: java-version: '11' distribution: 'adopt' cache: 'gradle' - - name: Build with Gradle + - name: Build grobid + working-directory: ./grobid + run: ./gradlew install -x test + - name: Build grobid-ner + working-directory: ./grobid-ner + run: ./gradlew install -x test + - name: Install grobid-ner + working-directory: ./grobid/grobid-ner + run: ./gradlew copyModules + - name: Build entity-fishing with Gradle + working-directory: ./entity-fishing run: ./gradlew build \ No newline at end of file