From b3b41eb5ae27161f500f511eacf01b13916df519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sat, 5 Aug 2023 18:10:43 +0200 Subject: [PATCH] fix, ci: always pull latest images for CI --- .woodpecker.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index d6351a6..67f9e42 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,6 +1,7 @@ pipeline: build:wasmlib: image: albedo.lan:5000/rust-upend:latest + pull: true commands: - rustc --version && cargo --version - task build:wasmlib @@ -16,6 +17,7 @@ pipeline: build:backend: group: build image: albedo.lan:5000/rust-upend:latest + pull: true commands: - rustc --version && cargo --version - task build:backend @@ -31,6 +33,7 @@ pipeline: build:frontend: group: build image: albedo.lan:5000/node-upend:latest + pull: true commands: - node --version && npm --version - task build:frontend @@ -42,6 +45,7 @@ pipeline: lint:backend: group: lint image: albedo.lan:5000/rust-upend:latest + pull: true commands: - rustup component add clippy - task lint:backend @@ -58,6 +62,7 @@ pipeline: lint:frontend: group: lint image: albedo.lan:5000/node-upend:latest + pull: true commands: - node --version && npm --version - task lint:frontend @@ -69,6 +74,7 @@ pipeline: lint:jslib: group: lint image: albedo.lan:5000/node-upend:latest + pull: true commands: - node --version && npm --version - task lint:jslib @@ -80,6 +86,7 @@ pipeline: lint:webext: group: lint image: albedo.lan:5000/node-upend:latest + pull: true commands: - node --version && npm --version - task lint:webext @@ -91,6 +98,7 @@ pipeline: test:backend: group: test image: albedo.lan:5000/rust-upend:latest + pull: true commands: - task test:backend # volumes: @@ -104,6 +112,7 @@ pipeline: package: image: albedo.lan:5000/rust-upend:latest + pull: true commands: - cd ./.ci_tmp/ - wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage