mirror of
https://github.com/openssl/openssl.git
synced 2024-12-21 06:09:35 +08:00
21f6c3b4fb
Run them all after 02:00 UTC. Add possibility to run them on workflow_dispatch. Add branch 3.4 to the coveralls.yml. Remove the branches from os-zoo.yml as it is possible to run on them manually from workflow_dispatch. Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> (Merged from https://github.com/openssl/openssl/pull/25765)
26 lines
671 B
YAML
26 lines
671 B
YAML
name: "Build openssl interop container from master"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '40 02 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update_quay_container:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: "log in to quay.io"
|
|
run: |
|
|
docker login -u openssl-ci+machine -p ${{ secrets.QUAY_IO_PASSWORD }} quay.io
|
|
- name: "Build container"
|
|
run: |
|
|
cd test/quic-openssl-docker/
|
|
docker build -t quay.io/openssl-ci/openssl-quic-interop:latest .
|
|
- name: "Push to quay"
|
|
run: |
|
|
docker push quay.io/openssl-ci/openssl-quic-interop:latest
|
|
|