diff --git a/.github/workflows/benchmarker.yml b/.github/workflows/benchmarker.yml index 662b7cd7..cd216d8b 100644 --- a/.github/workflows/benchmarker.yml +++ b/.github/workflows/benchmarker.yml @@ -106,8 +106,17 @@ jobs: INPUT_BENCHMARK_TYPE: ${{ inputs.benchmark_type }} INPUT_BENCHMARKS: ${{ inputs.benchmarks }} INPUT_SHOT_EXECUTABLE: ${{ inputs.shot_executable }} + OS_PROJECT_ID: ${{ secrets.OS_PROJECT_ID }} + OS_PROJECT_NAME: ${{ secrets.OS_PROJECT_NAME }} + OS_USER_DOMAIN_NAME: "Default" + OS_PROJECT_DOMAIN_ID: "default" + OS_USERNAME: ${{ secrets.OS_USERNAME }} + OS_PASSWORD: ${{ secrets.OS_PASSWORD }} + OS_REGION_NAME: "regionOne" + OS_INTERFACE: "public" + OS_IDENTITY_API_VERSION: "3" working-directory: ${{ github.workspace }}/shot-benchmarker - run: python main.py + run: python main.py -c -s - name: Upload benchmarks uses: actions/upload-artifact@v3 diff --git a/.github/workflows/build-push.yml b/.github/workflows/build-push.yml index 3eb00489..e41950d5 100644 --- a/.github/workflows/build-push.yml +++ b/.github/workflows/build-push.yml @@ -17,22 +17,22 @@ jobs: retention: 30 upload_artifacts: true -# # Then, we build and test using all licenses included proprietary ones - build-proprietary: - name: Build & Test (Proprietary licenses) - needs: [ build-test ] - uses: ./.github/workflows/build-workflow.yml - with: - job_count: 4 - build_type: Release - retention: 30 - upload_artifacts: false - enable_gurobi: true - enable_gams: true - artifact_suffix: '-proprietary' - secrets: - gurobi_license: ${{ secrets.GUROBI_LICENSE_FILE }} - gams_license: ${{ secrets.GAMS_LICENSE_FILE }} + # Then, we build and test using all licenses included proprietary ones +# build-proprietary: +# name: Build & Test (Proprietary licenses) +# needs: [ build-test ] +# uses: ./.github/workflows/build-workflow.yml +# with: +# job_count: 4 +# build_type: Release +# retention: 30 +# upload_artifacts: false +# enable_gurobi: true +# enable_gams: true +# artifact_suffix: '-proprietary' +# secrets: +# gurobi_license: ${{ secrets.GUROBI_LICENSE_FILE }} +# gams_license: ${{ secrets.GAMS_LICENSE_FILE }} # Finally, we run some simple benchmarks benchmark: