Skip to content
Snippets Groups Projects
Commit 3b6d4163 authored by Recolic K's avatar Recolic K
Browse files

switch from codebuild to gitlab ci

parent ea3dda68
No related branches found
No related tags found
No related merge requests found
Pipeline #869 failed with stage
in 57 seconds
image: recolic/rserver-monitor
stages:
- test
rproxy:
stage: test
only:
- schedules
script: "/do.bash rproxy"
drive:
stage: test
only:
- schedules
script: "/do.bash drive"
ss-tw:
stage: test
only:
- schedules
script: "/do.bash ss-tw"
ss-us1:
stage: test
only:
- schedules
script: "/do.bash ss-us1"
ss-us5:
stage: test
only:
- schedules
script: "/do.bash ss-us5"
ss-us6:
stage: test
only:
- schedules
script: "/do.bash ss-us6"
ovpn-tw:
stage: test
only:
- schedules
script: "/do.bash ovpn-tw"
www:
stage: test
only:
- schedules
script: "/do.bash www"
mail:
stage: test
only:
- schedules
script: "/do.bash mail"
tm:
stage: test
only:
- schedules
script: "/do.bash tm"
git:
stage: test
only:
- schedules
script: "/do.bash git"
zhixiang:
stage: test
only:
- schedules
script: "/do.bash zhixiang"
mc:
stage: test
only:
- schedules
script: "/do.bash mc"
allow_failure: true
push-httpdb-agent:
stage: test
only:
- schedules
script: "/do.bash push-httpdb-agent"
allow_failure: true
ddns-wuhan:
stage: test
only:
- schedules
script: "/do.bash ddns-wuhan"
ddns-us:
stage: test
only:
- schedules
script: "/do.bash ddns-us"
dl:
stage: test
only:
- schedules
script: "/do.bash dl"
image: docker:19.03.12
variables:
# When using dind service, you must instruct docker to talk with the
# daemon started inside of the service. The daemon is available with
# a network connection instead of the default /var/run/docker.sock socket.
#
# The 'docker' hostname is the alias of the service container as described at
# https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#accessing-the-services
#
# If you're using GitLab Runner 12.7 or earlier with the Kubernetes executor and Kubernetes 1.6 or earlier,
# the variable must be set to tcp://localhost:2375 because of how the
# Kubernetes executor connects services to the job container
# DOCKER_HOST: tcp://localhost:2375
#
DOCKER_HOST: tcp://docker:2375
#
# This instructs Docker not to start over TLS.
DOCKER_TLS_CERTDIR: ""
services:
- docker:19.03.12-dind
before_script:
- docker info
build:
stage: build
script:
- docker login -u recolic -p "$docker_pswd"
- docker build -t recolic/rserver-status .
- docker push recolic/rserver-status
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment