Continuous Integration: Difference between revisions

From FreeCAD Documentation
(Started page. Needed to cut short due to low battery and keyboard issues. Will return to fix)
 
No edit summary
Line 1: Line 1:
== Continuous Integration ==
== Continuous Integration ==
Currently the FreeCAD repo on GitHub will trigger a build on the below two CI systems. Between these systems pretty much all the main cross-platforms OSs are coveredː Linux, MacOSX, and Windows.
Currently the FreeCAD repo on GitHub will trigger a build on the below two CI systems. Between these systems pretty much all the main cross-platforms OSs are coveredː Linux, MacOSX, and Windows. CIs also
=== TravisCI ===
=== TravisCI ===
[[File:Travis-logo.png|50px|left]]
Tests against Linux and OSX. The config file is called .travis.yml and it lives in the top directory of FreeCAD
Tests against Linux and OSX. The config file is called [https://github.com/FreeCAD/FreeCAD/blob/master/.travis.yml .travis.yml] and it lives in the top directory of FreeCAD.

̽To view current and past buildsː https://travis-ci.org/FreeCAD/FreeCAD/builds

=== Appveyor ===
=== Appveyor ===
Tests against Windows. The config file is called .appveyor.yml and it lives in the top directory of FreeCAD
Tests against Windows. The config file is called [https://github.com/FreeCAD/FreeCAD/blob/master/appveyor.yml appveyor.yml] and it lives in the top directory of FreeCAD


== Tips ==
== Tips ==
- If you add [skip ci] or [ci skip] to a git commit it will cancel a CI skip.
- If you add [skip ci] or [ci skip] to a git commit it will cancel a CI build.


[[CategoryːDeveloper Documentation]]
[[CategoryːDevelopers]]

Revision as of 20:13, 17 March 2017

Continuous Integration

Currently the FreeCAD repo on GitHub will trigger a build on the below two CI systems. Between these systems pretty much all the main cross-platforms OSs are coveredː Linux, MacOSX, and Windows. CIs also

TravisCI

Tests against Linux and OSX. The config file is called .travis.yml and it lives in the top directory of FreeCAD. ̽To view current and past buildsː https://travis-ci.org/FreeCAD/FreeCAD/builds

Appveyor

Tests against Windows. The config file is called appveyor.yml and it lives in the top directory of FreeCAD

Tips

- If you add [skip ci] or [ci skip] to a git commit it will cancel a CI build.

CategoryːDeveloper Documentation