<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }
</style>
<body>
<div class='content'>
<h3>Imran Hussain pushed to branch sucs-site at <a href="https://projects.sucs.org/sucssite/sucs-site">sucssite / sucs-site</a></h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/a5e75252630639e833cb22f339db78ba3c98b19d">a5e75252</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-08T00:58:07Z</i>
</div>
<pre class='commit-message'>Add CI to sucs-site project.

Currently only checks to see if the php is valid.</pre>
</li>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/394b18d6dbdceb645c8a7c8cefc9e59fc2a4119b">394b18d6</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-08T01:03:21Z</i>
</div>
<pre class='commit-message'>Add the right file...</pre>
</li>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/811d395601f77721fcde7f8d94ad6c0529ff6edc">811d3956</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-08T18:00:56Z</i>
</div>
<pre class='commit-message'>Add build status badge to readme</pre>
</li>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/377fe00e393dd8a0c44a60170af2b8d02d52d7c3">377fe00e</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-09T10:27:27Z</i>
</div>
<pre class='commit-message'>Rewrite the gitlabci file.</pre>
</li>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/1e37830afdc19890d0ffe1cdfef64157fe0fc5af">1e37830a</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-09T10:35:18Z</i>
</div>
<pre class='commit-message'>Fix ci</pre>
</li>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/e4f93acea862a8f50ed5227c9b001938d1ddcf50">e4f93ace</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-09T11:02:25Z</i>
</div>
<pre class='commit-message'>Merge branch 'master' into beta</pre>
</li>
<li>
<strong><a href="https://projects.sucs.org/sucssite/sucs-site/commit/6cf99d6266151c3d0c115fb45b7565f2656827f0">6cf99d62</a></strong>
<div>
<span>by Imran Hussain</span>
<i>at 2015-11-09T11:10:13Z</i>
</div>
<pre class='commit-message'>Merge branch 'beta' into sucs-site</pre>
</li>
</ul>
<h4>2 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
<span class='new-file'>
+
.gitlab-ci.yml
</span>
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
README.md
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://projects.sucs.org/sucssite/sucs-site/compare/ed2617c1a6b514b82d4e8d8ba440e1c91b9a317c...6cf99d6266151c3d0c115fb45b7565f2656827f0#diff-0'>
<strong>
.gitlab-ci.yml
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- /dev/null
</span><span style="color: #000000;background-color: #ddffdd">+++ b/.gitlab-ci.yml
</span><span style="color: #aaaaaa">@@ -0,0 +1,35 @@
</span><span style="color: #000000;background-color: #ddffdd">+# specify what docker image
+# go with the default image for now and mangle it
+#image: ruby:2.1
+
+stages:
+  - test
+  - deploy
+
+# make sure php is in the image
+before_script:
+   - apt-get clean
+   - apt-get update
+   - apt-get install -y php5-cli
+
+php-syntax-check:
+  stage: test
+  script:
+   - php -l htdocs/index.php
+   - find components | xargs -n 1 php -l
+   - find plugins | xargs -n 1 php -l
+   - find lib | xargs -n 1 php -l
+  
+fake-deploy-beta:
+  stage: deploy
+  script:
+   - echo "Hello World!"
+  only:
+   - beta
+
+fake-deploy-live:
+  stage: deploy
+  script:
+   - echo "Hello World!"
+  only:
+   - sucs-site
</span>\ No newline at end of file
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://projects.sucs.org/sucssite/sucs-site/compare/ed2617c1a6b514b82d4e8d8ba440e1c91b9a317c...6cf99d6266151c3d0c115fb45b7565f2656827f0#diff-1'>
<strong>
README.md
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/README.md
</span><span style="color: #000000;background-color: #ddffdd">+++ b/README.md
</span><span style="color: #aaaaaa">@@ -1,4 +1,6 @@
</span> # SUCS Site
<span style="color: #000000;background-color: #ddffdd">+[![build status](https://projects.sucs.org/ci/projects/2/status.png?ref=master)](https://projects.sucs.org/ci/projects/2?ref=master)
+
</span> ---
 ## Project Structure
 <br>
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://projects.sucs.org/sucssite/sucs-site/compare/ed2617c1a6b514b82d4e8d8ba440e1c91b9a317c...6cf99d6266151c3d0c115fb45b7565f2656827f0">View it on GitLab</a>
<br>
You're receiving this email because of your account on <a href="https://projects.sucs.org/">projects.sucs.org</a>.
If you'd like to receive fewer emails, you can adjust your notification settings.
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":["merge_requests","issues","commit"],"url":"https://projects.sucs.org/sucssite/sucs-site/compare/ed2617c1a6b514b82d4e8d8ba440e1c91b9a317c...6cf99d6266151c3d0c115fb45b7565f2656827f0"}}</script>
</p>
</div>
</body>
</html>