This commit is contained in:
parent
a20c6c5ec0
commit
26e861b0ab
@ -1,13 +1,11 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
name: html_website
|
||||
|
||||
steps:
|
||||
- name: html_validate
|
||||
image: ubuntu
|
||||
commands:
|
||||
- apt-get update && apt-get install -y tidy
|
||||
- tidy -imu index.html + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- tidy -imu index.html + || true
|
||||
|
||||
|
13
.drone.yml.old
Normal file
13
.drone.yml.old
Normal file
@ -0,0 +1,13 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: html_validate
|
||||
image: ubuntu
|
||||
commands:
|
||||
- apt-get update && apt-get install -y tidy
|
||||
- tidy -imu index.html + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
3
Dockerfile
Normal file
3
Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM httpd
|
||||
|
||||
COPY ./ /user/local/apache2/htdocs/
|
Loading…
Reference in New Issue
Block a user