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)
 
(Marked this version for translation)
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
== Continuous Integration ==
<translate>
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.
<!--T:7-->
=== TravisCI ===
{{docnav|Testing|Branding}}
Tests against Linux and OSX. The config file is called .travis.yml and it lives in the top directory of FreeCAD


== Continuous Integration == <!--T:1-->
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 can also be used to run [[Testing|unit tests]].


=== Appveyor ===
=== TravisCI === <!--T:2-->
[[File:Travis-logo.png|50px|left]]
Tests against Windows. The config file is called .appveyor.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


== Tips ==
=== Appveyor === <!--T:3-->
[[File:Appveyor.svg|left|thumb|40px]] 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. To view current and previous Appveyor buildsː https://ci.appveyor.com/project/yorikvanhavre/freecad/history
- If you add [skip ci] or [ci skip] to a git commit it will cancel a CI skip.


== Tips == <!--T:4-->
[[CategoryːDevelopers]]
- If you add <code>[skip ci]</code> or <code>[ci skip]</code> to a git commit it will cancel a CI build.


<!--T:5-->
{{docnav|Testing|Branding}}

<!--T:8-->
{{Userdocnavi}}

<!--T:6-->
[[Category:Developer_Documentation]]
</translate>
{{clear}}

Revision as of 14:40, 23 February 2019

Testing
Branding

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 can also be used to run unit tests.

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. To view current and previous Appveyor buildsː https://ci.appveyor.com/project/yorikvanhavre/freecad/history

Tips

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


Testing
Branding