Skip to content

Commit

Permalink
chore: comment out more steps to ease debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
maxemiliang committed Oct 19, 2023
1 parent 06ba4db commit 7a07e3f
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ concurrency: push-build

jobs:
# First, we build and test using the default build options and only open source external libraries
build-test:
name: Build & Test
uses: ./.github/workflows/build-workflow.yml
with:
job_count: 4
build_type: Release
retention: 30
upload_artifacts: true
# build-test:
# name: Build & Test
# uses: ./.github/workflows/build-workflow.yml
# with:
# job_count: 4
# build_type: Release
# retention: 30
# upload_artifacts: true

# Then, we build and test using all licenses included proprietary ones
# build-proprietary:
Expand All @@ -37,28 +37,28 @@ jobs:
# Finally, we run some simple benchmarks
benchmark:
name: Benchmark
needs: [ build-test ]
# needs: [ build-test ]
uses: ./.github/workflows/benchmarker.yml
with:
benchmark_folder: "MINLP-convex-small"
benchmark_type: "nl"
shot_executable: ${{ github.workspace }}/build/SHOT

# Publish the test results as an output
publish-test:
name: Publish test results
needs: [ build-test ]
runs-on: [ self-hosted, docker ]
steps:
- uses: actions/download-artifact@v3
name: Download artifacts
with:
path: artifacts

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
artifacts/test-*/*.xml
# publish-test:
# name: Publish test results
# needs: [ build-test ]
# runs-on: [ self-hosted, docker ]
# steps:
# - uses: actions/download-artifact@v3
# name: Download artifacts
# with:
# path: artifacts
#
# - name: Publish Test Results
# uses: EnricoMi/publish-unit-test-result-action@v2
# if: always()
# with:
# files: |
# artifacts/test-*/*.xml

0 comments on commit 7a07e3f

Please sign in to comment.