@@ -391,6 +391,109 @@ jobs:
391391 topic : ${{ github.repository }} scheduled job failure
392392 content : ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
393393
394+ standard-builder-with-openssl_3_6_2-amd64 :
395+ needs :
396+ - standard-builder
397+
398+ name : Update standard-builder-with-openssl-3.6.2 on amd64
399+ runs-on : ubuntu-latest
400+
401+ concurrency :
402+ group : standard-builder-with-openssl_3_6_2-amd64
403+ cancel-in-progress : true
404+
405+ steps :
406+ - uses : actions/checkout@v6.0.2
407+ - name : Login to GitHub Container Registry
408+ # v2.2.0
409+ uses : docker/login-action@v4
410+ with :
411+ registry : ghcr.io
412+ username : ${{ github.repository_owner }}
413+ password : ${{ secrets.GITHUB_TOKEN }}
414+ - name : Build and push
415+ run : bash standard-builder-with-openssl-3.6.2/build-and-push.bash
416+ - name : Send alert on failure
417+ if : ${{ failure() }}
418+ uses : zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5
419+ with :
420+ api-key : ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_API_KEY }}
421+ email : ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_EMAIL }}
422+ organization-url : ' https://ponylang.zulipchat.com/'
423+ to : notifications
424+ type : stream
425+ topic : ${{ github.repository }} scheduled job failure
426+ content : ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
427+
428+ standard-builder-with-openssl_3_6_2-arm64 :
429+ needs :
430+ - standard-builder
431+
432+ name : Update standard-builder-with-openssl-3.6.2 on arm64
433+ runs-on : ubuntu-24.04-arm
434+
435+ concurrency :
436+ group : standard-builder-with-openssl_3_6_2-arm64
437+ cancel-in-progress : true
438+
439+ steps :
440+ - uses : actions/checkout@v6.0.2
441+ - name : Login to GitHub Container Registry
442+ # v2.2.0
443+ uses : docker/login-action@v4
444+ with :
445+ registry : ghcr.io
446+ username : ${{ github.repository_owner }}
447+ password : ${{ secrets.GITHUB_TOKEN }}
448+ - name : Build and push
449+ run : bash standard-builder-with-openssl-3.6.2/build-and-push.bash
450+ - name : Send alert on failure
451+ if : ${{ failure() }}
452+ uses : zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5
453+ with :
454+ api-key : ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_API_KEY }}
455+ email : ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_EMAIL }}
456+ organization-url : ' https://ponylang.zulipchat.com/'
457+ to : notifications
458+ type : stream
459+ topic : ${{ github.repository }} scheduled job failure
460+ content : ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
461+
462+ merge-standard-builder-with-openssl_3_6_2 :
463+ needs :
464+ - standard-builder-with-openssl_3_6_2-amd64
465+ - standard-builder-with-openssl_3_6_2-arm64
466+
467+ name : Create merged standard-builder-with-openssl-3.6.2
468+ runs-on : ubuntu-latest
469+
470+ concurrency :
471+ group : merge-standard-builder-with-openssl_3_6_2
472+ cancel-in-progress : true
473+
474+ steps :
475+ - uses : actions/checkout@v6.0.2
476+ - name : Login to GitHub Container Registry
477+ # v2.2.0
478+ uses : docker/login-action@v4
479+ with :
480+ registry : ghcr.io
481+ username : ${{ github.repository_owner }}
482+ password : ${{ secrets.GITHUB_TOKEN }}
483+ - name : Merge
484+ run : bash standard-builder-with-openssl-3.6.2/combine-images.bash
485+ - name : Send alert on failure
486+ if : ${{ failure() }}
487+ uses : zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5
488+ with :
489+ api-key : ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_API_KEY }}
490+ email : ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_EMAIL }}
491+ organization-url : ' https://ponylang.zulipchat.com/'
492+ to : notifications
493+ type : stream
494+ topic : ${{ github.repository }} scheduled job failure
495+ content : ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
496+
394497 x86-64-unknown-linux-builder-with-libressl_3_9_2 :
395498 needs :
396499 - standard-builder
@@ -501,6 +604,7 @@ jobs:
501604 - merge-standard-builder-with-libressl_4_2_0
502605 - merge-standard-builder-with-libressl_4_2_1
503606 - merge-standard-builder-with-openssl_3_6_0
607+ - merge-standard-builder-with-openssl_3_6_2
504608 - x86-64-unknown-linux-builder-with-libressl_3_9_2
505609 - x86-64-unknown-linux-builder-with-openssl_1_1_1w
506610 - x86-64-unknown-linux-builder-with-openssl_3_4_1
@@ -582,6 +686,7 @@ jobs:
582686 - shared-docker-ci-standard-builder-with-libressl-4.2.0
583687 - shared-docker-ci-standard-builder-with-libressl-4.2.1
584688 - shared-docker-ci-standard-builder-with-openssl-3.6.0
689+ - shared-docker-ci-standard-builder-with-openssl-3.6.2
585690
586691 steps :
587692 - name : Login to GitHub Container Registry
0 commit comments