diff --git a/.github/workflows/zxc-build-library.yaml b/.github/workflows/zxc-build-library.yaml index 0c352da9c..11b0b4b7e 100644 --- a/.github/workflows/zxc-build-library.yaml +++ b/.github/workflows/zxc-build-library.yaml @@ -85,15 +85,6 @@ jobs: configurePreset: ${{ matrix.preset }}-debug buildPreset: ${{ matrix.preset }}-debug - - name: CMake Build (Release) - if: ${{ github.event.inputs.branch-name }} == "main" - uses: lukka/run-cmake@v10 - env: - VCPKG_BINARY_SOURCES: clear - with: - configurePreset: ${{ matrix.preset }}-release - buildPreset: ${{ matrix.preset }}-release - # - name: List Directory Structure # if: ${{ contains(runner.os, 'Windows') && always() }} # shell: pwsh @@ -104,10 +95,6 @@ jobs: - name: Start CTest suite (Debug) run: ctest -C Debug --test-dir build/${{ matrix.preset }}-debug --output-on-failure - - - name: Start CTest suite (Release) - if: ${{ github.event.inputs.branch-name }} == "main" - run: ctest -C Debug --test-dir build/${{ matrix.preset }}-release --output-on-failure - name: Stop the local node run: sudo npx @hashgraph/hedera-local stop @@ -115,11 +102,3 @@ jobs: - name: Compute Short SHA id: sha run: echo "short=$(echo -n "${{ github.sha }}" | cut -c1-8)" >> $GITHUB_OUTPUT - - - name: Attach Artifact - if: ${{ github.event.inputs.branch-name }} == "main" - uses: actions/upload-artifact@v3 - with: - name: hapi-library-${{ runner.os }}-${{ steps.sha.outputs.short }} - path: package/ - if-no-files-found: warn