This commit is contained in:
Edward Thomson
2026-01-19 13:19:16 +00:00
parent aea972ada0
commit d2b44640ad

View File

@@ -141,26 +141,27 @@ jobs:
if: matrix.platform.container.name != ''
- name: Prepare builds
run: |
mkdir build-control
mkdir build-candidate
mkdir build
mkdir build/control
mkdir build/candidate
- name: Build control
uses: ./source/.github/actions/run-build
with:
command: cd ${BUILD_WORKSPACE:-.}/build-control && ../source/ci/build.sh
command: cd ${BUILD_WORKSPACE:-.}/build/control && ../../source/ci/build.sh
container: ${{ matrix.platform.container.name }}
container-version: ${{ env.docker-registry-container-sha }}
shell: ${{ matrix.platform.shell }}
- name: Build candidate
uses: ./source/.github/actions/run-build
with:
command: cd ${BUILD_WORKSPACE:-.}/build-candidate && ../source/ci/build.sh
command: cd ${BUILD_WORKSPACE:-.}/build/candidate && ../../source/ci/build.sh
container: ${{ matrix.platform.container.name }}
container-version: ${{ env.docker-registry-container-sha }}
shell: ${{ matrix.platform.shell }}
- name: Run control benchmarks
uses: ./source/.github/actions/run-build
with:
command: cd ${BUILD_WORKSPACE:-.}/build-candidate && ./benchmarks/libgit2/libgit2_benchmarks
command: cd ${BUILD_WORKSPACE:-.}/build/candidate && ./benchmarks/libgit2/libgit2_benchmarks
container: ${{ matrix.platform.container.name }}
container-version: ${{ env.docker-registry-container-sha }}
shell: ${{ matrix.platform.shell }}