add steps for building container images to building workflow
All checks were successful
Building cloud-images / building-x86 (push) Successful in 2h23m39s
Building cloud-images / building-x86-vm (push) Successful in 36m31s
Building cloud-images / building-aarch (push) Successful in 14m13s
Signing cloud-images / building (push) Successful in 6m17s

This commit is contained in:
Nadezhda Fedorova 2024-10-15 17:32:08 +03:00
parent 7c91871ac2
commit 99884ac726

View File

@ -30,7 +30,11 @@ jobs:
- name: Run script for x86 - name: Run script for x86
run: | run: |
ssh builder 'cd cloud-build && ./cloud-build.py -c ./configs/cb-ve-x86.yaml \ ssh builder 'cd cloud-build && ./cloud-build.py -c ./configs/cb-ve-x86.yaml \
--stages build test sync --create-remote-dirs' --stages build test sync --create-remote-dirs'
- name: Run script for container x86
run: |
ssh builder 'cd cloud-build && ./cloud-build.py -c ./configs/container-x86.yaml \
--stages build test sync --create-remote-dirs'
building-x86-vm: building-x86-vm:
runs-on: alt-sisyphus runs-on: alt-sisyphus
@ -85,3 +89,6 @@ jobs:
- name: Run script for aarch - name: Run script for aarch
run: | run: |
ssh -A abuilder "ssh builder 'cd cloud-build && ./cloud-build.py -c ./configs/cb-aarch64.yaml --stages build test sync --create-remote-dirs'" ssh -A abuilder "ssh builder 'cd cloud-build && ./cloud-build.py -c ./configs/cb-aarch64.yaml --stages build test sync --create-remote-dirs'"
- name: Run script for container aarch
run: |
ssh -A abuilder "ssh builder 'cd cloud-build && ./cloud-build.py -c ./configs/container-aarch64.yaml --stages build test sync --create-remote-dirs'"