* MOD: workflow tests

Signed-off-by: Uwe Hermann <uh@uleenucks.de>
This commit is contained in:
2024-01-21 13:48:07 +01:00
parent f63abc247d
commit 6ce1991464

View File

@@ -29,6 +29,26 @@ jobs:
# run: apt install parallel -y
# - name: Build docker container
# run: ./build-all.sh && exit 0
- name: Use kaniko image
image: gcr.io/kaniko-project/executor:debug
run: which executor && exit 1 mkdir -p /kaniko/.docker && cp config.json /kaniko/.docker/config.json && cp plugin.sh /kaniko/plugin.sh && /kaniko/plugin.sh
- name: Kaniko build htop
uses: aevea/action-kaniko@master
with:
image: uleenucks/htop
build_file: htop/Dockerfile
path: htop
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
cache: false
exra_args:
- --cleanup
- name: Kaniko build lynx
uses: aevea/action-kaniko@master
with:
image: uleenucks/lynx
build_file: lynx/Dockerfile
path: lynx
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
cache: false
exra_args:
- --cleanup