diff --git a/.github/workflows/pr-build-dependency-graph.yml b/.github/workflows/pr-build-dependency-graph.yml index b07195fe..196ea991 100644 --- a/.github/workflows/pr-build-dependency-graph.yml +++ b/.github/workflows/pr-build-dependency-graph.yml @@ -41,7 +41,7 @@ jobs: uses: gradle/actions/setup-gradle@v4 - name: Build with Gradle Wrapper - run: ./gradlew release + run: ./gradlew build generate-dependency-graph: runs-on: ubuntu-latest diff --git a/.github/workflows/push-gradle-ci.yml b/.github/workflows/push-gradle-ci.yml index b977ac52..28352a27 100644 --- a/.github/workflows/push-gradle-ci.yml +++ b/.github/workflows/push-gradle-ci.yml @@ -44,7 +44,7 @@ jobs: # Run build - name: Build with Gradle Wrapper - run: ./gradlew release + run: ./gradlew build # Upload an artifact release for later jobs to consume - name: Upload distribution diff --git a/sdk/src/doc/articles/howto_build.md b/sdk/src/doc/articles/howto_build.md index eeada336..2a7e11c3 100644 --- a/sdk/src/doc/articles/howto_build.md +++ b/sdk/src/doc/articles/howto_build.md @@ -14,19 +14,19 @@ Building from source should be straightforward: git clone https://github.com/ion-fusion/fusion-java.git cd fusion-java - ./gradlew release + ./gradlew build -After a successful release build, you'll have a basic SDK under `build/install/fusion`. The notable -artifacts within that directory are: +After a successful build, you'll have a basic SDK under `sdk/build/install/ion-fusion-sdk`. +The notable artifacts within that directory are: * `bin/fusion` is the `fusion` CLI -* `docs/fusiondoc/fusion.html` is the documentation for the Ion Fusion language +* `docs/fusion.html` is the documentation for the Ion Fusion language * `docs/javadoc/index.html` is the documentation embedding Ion Fusion in your Java application * `lib` holds the jars needed for embedding To experiment with the CLI, add the `bin` to your path: - PATH=$PATH:$PWD/build/install/fusion/bin + PATH=$PATH:$PWD/sdk/build/install/ion-fusion-sdk/bin fusion help That should give you an overview of the CLI's subcommands.