php/.gitlab-ci.yml

36 lines
889 B
YAML
Raw Permalink Normal View History

2017-12-07 04:19:02 +00:00
stages:
- build
- build-manifest
2020-08-23 02:54:50 +00:00
- build-test
- build-manifest-test
2017-12-07 04:19:02 +00:00
variables:
BRANCH: alpine
2022-07-30 00:51:02 +00:00
VERSION: 8.1-fpm-${BRANCH}
DOCKER_HOST: tcp://docker:2375
VERSIONARCH: ${VERSION}-${ARCH}
2017-12-07 04:19:02 +00:00
cache:
key: ${CI_JOB_NAME_SLUG}-${CI_COMMIT_REF_SLUG}
paths:
2023-02-04 13:47:39 +00:00
- build-cache
image: docker:latest
2017-12-07 04:19:02 +00:00
services:
- docker:dind
2017-12-07 04:19:02 +00:00
before_script:
2023-02-04 13:47:39 +00:00
- if [ ! -d build-cache ]; then mkdir build-cache; fi
- if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
- apk add git curl
2023-04-05 13:09:08 +00:00
- docker info && docker version
# env|sort
# docker login -u "$CI_DEPENDENCY_PROXY_USER" -p "$CI_DEPENDENCY_PROXY_PASSWORD" "$CI_SERVER_HOST"
2018-02-27 08:53:56 +00:00
- echo "$CI_JOB_TOKEN" | docker login -u "$CI_REGISTRY_USER" "$CI_REGISTRY" --password-stdin
2017-12-07 04:19:02 +00:00
include:
- .gitlab-docker-x86_64.yml
2023-10-15 10:16:11 +00:00
- .gitlab-docker-armv7l.yml
- .gitlab-docker-arm64.yml
- .gitlab-docker-manifest.yml