Continuous Integration: Difference between revisions

From FreeCAD Documentation
(Marked this version for translation)
m ((Vertical Docnav))
Line 2: Line 2:
<translate>
<translate>
<!--T:7-->
<!--T:7-->
{{docnav|Testing|Branding}}
{{docnav
|[[Testing|Testing]]
|[[Branding|Branding]]
}}


== Continuous Integration == <!--T:1-->
== Continuous Integration == <!--T:1-->
Line 22: Line 25:


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


<!--T:8-->
<!--T:8-->

Revision as of 11:42, 22 October 2019

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.

Relevant Links