Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sucs-site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sucssite
sucs-site
Compare revisions
96061966ba52280180227a15971a13eb779c8d44 to f522dda59a653f4df20c420d7849a76e3611d4af
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
sucssite/sucs-site
Select target project
No results found
f522dda59a653f4df20c420d7849a76e3611d4af
Select Git revision
Branches
beta
master
sucs-site
Swap
Target
sucssite/sucs-site
Select target project
osian/sucs-site
kais58/sucs-site
imranh/sucs-site
foshjedi2004/sucs-site
gigosaurus/sucs-site
matstn/sucs-site
ripp_/sucs-site
eggnog/sucs-site
sucssite/sucs-site
elbows/sucs-site
realitykiller/sucs-site
crox/sucs-site
vectre/sucs-site
welshbyte/sucs-site
paperclipman/sucs-site
15 results
96061966ba52280180227a15971a13eb779c8d44
Select Git revision
Branches
beta
master
sucs-site
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (8)
Switch to using debian jessie docker image
· 5711b517
Imran Hussain
authored
7 years ago
5711b517
That didn't work so lets go back to using the default ruby image and test php against php7
· 4f6760ff
Imran Hussain
authored
7 years ago
4f6760ff
npm is part of nodejs
· 9cf975b2
Imran Hussain
authored
7 years ago
9cf975b2
install nodejs from the main site, debian stable packages are screweed up
· aa48cb72
Imran Hussain
authored
7 years ago
aa48cb72
need curl, doh!
· 84780e5d
Imran Hussain
authored
7 years ago
84780e5d
forgot a -y
· d8584f05
Imran Hussain
authored
7 years ago
d8584f05
nodejs install that is supposed to install deps doesn't actually do so, install gnupg manually
· 850dc297
Imran Hussain
authored
7 years ago
850dc297
the script to install nodejs DOESN'T INSTALL NODEJS!
· f522dda5
Imran Hussain
authored
7 years ago
f522dda5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+7
-4
7 additions, 4 deletions
.gitlab-ci.yml
with
7 additions
and
4 deletions
.gitlab-ci.yml
View file @
f522dda5
# specify what docker image
# go with the default image for now and mangle it
#image:
ruby:2.1
#image:
debian:jessie
stages
:
-
test
...
...
@@ -14,7 +14,7 @@ php-syntax-check:
script
:
-
apt-get clean
-
apt-get update
-
apt-get install -y php
5
-cli
-
apt-get install -y php-cli
-
php -l htdocs/index.php
-
find components -name *.php | xargs -n 1 php -l
-
find plugins -name *.php | xargs -n 1 php -l
...
...
@@ -25,8 +25,11 @@ js-syntax-check:
script
:
-
apt-get clean
-
apt-get update
-
apt-get install -y npm
-
ln -s /usr/bin/nodejs /usr/bin/node
# - apt-get install -y nodejs
# - ln -s /usr/bin/nodejs /usr/bin/node
-
apt-get install -y curl gnupg
-
curl -sL https://deb.nodesource.com/setup_8.x | bash -
-
apt-get install -y nodejs
-
npm install -g jshint
-
find htdocs/js/ -name *.js ! -name jquery* | xargs -n 1 jshint --verbose
...
...
This diff is collapsed.
Click to expand it.