Skip to content
Snippets Groups Projects
Commit 7d86ea46 authored by Matthieu FAURE's avatar Matthieu FAURE
Browse files

first commit

parent 101e5257
No related branches found
No related tags found
No related merge requests found
# Created by .ignore support plugin (hsz.mobi)
image: php:7.0-apache
variables:
DEBIAN_FRONTEND: noninteractive
before_script:
- apt-get update -yqq
- apt-get install -yqq curl
hello-world:
stage: test
script:
- echo "hello, simple echo"
hello-ci:
stage: test
script:
- curl http://localhost:80/index.php
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Debug-CI</title>
</head>
<body>
<p>Hello World hard-coded</p>
<?php $myWorld="CI" ?>
<p>Hello <?= $myWorld ?></p>
</body>
</html>
\ No newline at end of file
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