Added gitea CI/CD configuration
Some checks failed
Create Docker Image / Build Docker Image (push) Failing after 8s
Some checks failed
Create Docker Image / Build Docker Image (push) Failing after 8s
This commit is contained in:
parent
13d4b47c64
commit
e26770f997
@ -33,15 +33,15 @@ jobs:
|
||||
|
||||
- name: Environment part 2
|
||||
run: |
|
||||
echo "++ Environment" && env
|
||||
echo "++ Environment" && env|sort
|
||||
echo "++ PWD" && pwd
|
||||
echo "++ ls" && ls -al
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
if [ -f init ]; then chmod 500 init; fi
|
||||
([ -z "$REFRESH" -a -f build-cache/${CI_COMMIT_REF_SLUG} ]) && docker load < build-cache/${CI_COMMIT_REF_SLUG} || true
|
||||
rm build-cache/* || true
|
||||
#([ -z "$REFRESH" -a -f build-cache/${CI_COMMIT_REF_SLUG} ]) && docker load < build-cache/${CI_COMMIT_REF_SLUG} || true
|
||||
#rm build-cache/* || true
|
||||
docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --cache-from ${CI_REGISTRY_IMAGE}:${VERSIONARCH} -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH} .
|
||||
docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}
|
||||
docker save ${CI_REGISTRY_IMAGE}:${VERSIONARCH} > build-cache/${CI_COMMIT_REF_SLUG}
|
||||
|
Loading…
Reference in New Issue
Block a user