TAGL/TP: Difference between revisions

From air
Jump to navigation Jump to search
No edit summary
Line 25: Line 25:
Ajouter un collaborateur au projet ''forké''
Ajouter un collaborateur au projet ''forké''


Activer le Travis-CI ''hook' depuis https://travis-ci.org/ (sign in avec le compte GitHub)
Activer de Travis-CI


''Commit/Push'' '''.travis.yml''' pour Ant (depuis un gist)
''Commit/Push'' '''.travis.yml''' pour Ant (depuis un gist)

Revision as of 10:34, 6 February 2014

Séance 1

Créer un dépôt Git local (bare)

mkdir tagl
cd tagl
mkdir testgit
cd testgit
git init --bare
cd ..
git clone testgit testgit-work
cd testgit-work
echo hello > readme.rst
git add readme.rst
git commit
git push

Installer dans votre Eclipse le plugin ReST Editor depuis le Marketplace Eclipse


Créer compte individuel sur GitHub https://github.com

Forker le projet TAGL (url) cron4j (2.5.5)

Ajouter un collaborateur au projet forké

Activer le Travis-CI hook' depuis https://travis-ci.org/ (sign in avec le compte GitHub)

Commit/Push .travis.yml pour Ant (depuis un gist)




Créer cron4j-mvn (layout + pom.xml)

Modifier .travis.yml pour mvn -DskipTests=true clean install (Commit/Push)

Tests unitaires du i.s.c.CronParser (JUnit 4)

Modifier .travis.yml pour mvn clean install (Commit/Push)

Séance 2