1919 build :
2020 name : Build distributions
2121 runs-on : ubuntu-latest
22- timeout-minutes : 30
2322 if : >-
2423 github.event_name == 'push' ||
2524 inputs.release_tag == ''
@@ -152,7 +151,6 @@ jobs:
152151 reproducibility-build :
153152 name : Independent distribution builder ${{ matrix.builder }}
154153 runs-on : ubuntu-latest
155- timeout-minutes : 30
156154 if : >-
157155 github.event_name == 'push' ||
158156 inputs.release_tag == ''
@@ -193,7 +191,6 @@ jobs:
193191 name : Compare independent distribution builders
194192 needs : [build, reproducibility-build]
195193 runs-on : ubuntu-latest
196- timeout-minutes : 10
197194 if : >-
198195 github.event_name == 'push' ||
199196 inputs.release_tag == ''
@@ -282,7 +279,6 @@ jobs:
282279 python-matrix :
283280 name : Python ${{ matrix.python-version }} release gate
284281 runs-on : ubuntu-latest
285- timeout-minutes : 30
286282 strategy :
287283 fail-fast : false
288284 matrix :
@@ -324,7 +320,6 @@ jobs:
324320 github.event_name == 'push' ||
325321 inputs.release_tag == ''
326322 runs-on : ubuntu-latest
327- timeout-minutes : 30
328323 steps :
329324 - uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
330325 with :
@@ -377,7 +372,6 @@ jobs:
377372 installed-artifact-platform-smoke :
378373 name : Installed wheel smoke (${{ matrix.os }})
379374 needs : build
380- timeout-minutes : 20
381375 runs-on : ${{ matrix.os }}
382376 if : >-
383377 github.event_name == 'push' ||
@@ -429,7 +423,6 @@ jobs:
429423
430424 encryption :
431425 name : Encryption driver release gate (Python ${{ matrix.python-version }})
432- timeout-minutes : 15
433426 runs-on : ubuntu-latest
434427 strategy :
435428 fail-fast : false
@@ -454,7 +447,6 @@ jobs:
454447
455448 browser-accessibility :
456449 name : Browser accessibility release gate
457- timeout-minutes : 20
458450 runs-on : ubuntu-latest
459451 if : >-
460452 github.event_name == 'push' ||
@@ -480,7 +472,6 @@ jobs:
480472
481473 pi-extension :
482474 name : Pi extension release gate
483- timeout-minutes : 20
484475 runs-on : ubuntu-latest
485476 if : >-
486477 github.event_name == 'push' ||
@@ -512,7 +503,6 @@ jobs:
512503 docker-smoke :
513504 name : Production image release gate
514505 runs-on : ubuntu-latest
515- timeout-minutes : 20
516506 if : >-
517507 github.event_name == 'push' ||
518508 inputs.release_tag == ''
@@ -639,8 +629,7 @@ jobs:
639629 trap cleanup EXIT
640630 python -m pip install --disable-pip-version-check --no-cache-dir pip-audit==2.10.1
641631 docker create --name "$container" engraphis:release >/dev/null
642- site_packages=$(docker run --rm engraphis:release python3 -c "import sysconfig; print(sysconfig.get_path('purelib'))")
643- docker cp "$container:$site_packages/." "$audit_dir"
632+ docker cp "$container":/usr/local/lib/python3.11/site-packages/. "$audit_dir"
644633 python -m pip_audit --path "$audit_dir"
645634 - name : Run customer-mode readiness smoke
646635 shell : bash
@@ -649,7 +638,6 @@ jobs:
649638 -e ENGRAPHIS_EMBED_MODEL= \
650639 -e ENGRAPHIS_LOOP_INTERVAL=0 \
651640 -e ENGRAPHIS_HOST=0.0.0.0 \
652- -e ENGRAPHIS_SERVICE_MODE=customer \
653641 engraphis:release
654642 for i in $(seq 1 60); do
655643 if curl -fsS http://127.0.0.1:8700/api/ready; then
@@ -660,6 +648,7 @@ jobs:
660648 docker logs engraphis-release
661649 exit 1
662650 - name : Store whole-image evidence
651+ if : always()
663652 uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
664653 with :
665654 name : production-image-evidence
@@ -674,7 +663,6 @@ jobs:
674663 github.event_name == 'push' ||
675664 inputs.release_tag == ''
676665 runs-on : ubuntu-latest
677- timeout-minutes : 15
678666 permissions :
679667 contents : read
680668 env :
@@ -708,7 +696,6 @@ jobs:
708696 needs : [build, reproducibility-check, python-matrix, artifact-core-py39, installed-artifact-platform-smoke, encryption, browser-accessibility, pi-extension, docker-smoke, code-security]
709697 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
710698 runs-on : ubuntu-latest
711- timeout-minutes : 10
712699 permissions :
713700 contents : read
714701
@@ -786,7 +773,6 @@ jobs:
786773 # semver tag, whose value was matched to pyproject.toml in the build job above.
787774 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
788775 runs-on : ubuntu-latest
789- timeout-minutes : 10
790776 permissions :
791777 id-token : write
792778 contents : read
@@ -833,7 +819,6 @@ jobs:
833819 needs : publish
834820 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
835821 runs-on : ubuntu-latest
836- timeout-minutes : 10
837822 permissions :
838823 contents : write
839824
@@ -879,7 +864,6 @@ jobs:
879864 github.ref == 'refs/heads/main' &&
880865 inputs.release_tag != ''
881866 runs-on : ubuntu-latest
882- timeout-minutes : 10
883867 permissions :
884868 actions : read
885869 contents : write
0 commit comments