Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions jenkins_jobs/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
builders:
# Setting BUILD_ID for the vagrant process to make sure the Jenkins process tree killer
# doesn't kill the VM before the next job is started.
- shell: BUILD_ID=gpii-linux DISPLAY=:0 vagrant up --provider virtualbox && npm install
- shell: BUILD_ID=gpii-linux DISPLAY=:0 vagrant up --provider virtualbox

- job:
name: linux-code-analysis
description: 'GPII Linux code analysis'
node: h-0005.tor1.inclusivedesign.ca
workspace: $parent_workspace
builders:
- shell: grunt lint
- shell: vagrant ssh -c 'cd /home/vagrant/sync; $(npm bin)/grunt lint'
publishers:
- email:
recipients: ci@lists.gpii.net
Expand All @@ -73,7 +73,7 @@
node: h-0005.tor1.inclusivedesign.ca
workspace: $parent_workspace
builders:
- shell: grunt unit-tests
- shell: npm run test:vagrantUnit
publishers:
- email:
recipients: ci@lists.gpii.net
Expand All @@ -84,7 +84,7 @@
node: h-0005.tor1.inclusivedesign.ca
workspace: $parent_workspace
builders:
- shell: grunt acceptance-tests
- shell: npm run test:vagrantAcceptance
publishers:
- email:
recipients: ci@lists.gpii.net
Expand Down