Hello,
I was wondering if it was possible to use the same containers across multiple steps in the same jobs?
Something along the line of:
- name : Build system (qemu)
uses: uraimo/run-on-arch-action@v2.5.0
with:
arch: ${{ matrix.qemu_arch }}
distro: ubuntu20.04
install: |
echo "Install packages"
apt-get update && apt-get install -y pkg1 pkg2
run: |
echo "System successfully built"
- name : Build project (qemu)
uses: uraimo/run-on-arch-action@v2.5.0
with:
arch: ${{ matrix.qemu_arch }}
distro: ubuntu20.04
run: |
... build project...
- name: functional-tests (qemu)
uses: uraimo/run-on-arch-action@v2.5.0
with:
arch: ${{ matrix.qemu_arch }}
distro: ubuntu20.04
run: |
...do some tests
continue-on-error: false
...
The idea is to split the building chain into multiple steps so it's easier to monitor.
It seems that at the moment, each steps is recreating the container at each run...
Hello,
I was wondering if it was possible to use the same containers across multiple steps in the same jobs?
Something along the line of:
The idea is to split the building chain into multiple steps so it's easier to monitor.
It seems that at the moment, each steps is recreating the container at each run...