Continuous Integration: Difference between revisions

From FreeCAD Documentation
No edit summary
(Fixed Docnav)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>

<!--T:7-->
<!--T:7-->
{{Docnav
{{Docnav
|[[FreeCAD_Build_Tool|FreeCAD Build Tool]]
|[[Testing|Testing]]
|[[Branding|Branding]]
|[[Branding|Branding]]
}}
}}

</translate>
</translate>
{{TOCright}}
{{TOCright}}
<translate>
<translate>

== Continuous Integration == <!--T:1-->
== 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]].
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]].
Line 25: Line 28:
=== Relevant Links === <!--T:9-->
=== Relevant Links === <!--T:9-->
* [[LGTM|LGTM]]
* [[LGTM|LGTM]]



<!--T:5-->
<!--T:5-->
{{Docnav
{{Docnav
|[[FreeCAD_Build_Tool|FreeCAD Build Tool]]
|[[Testing|Testing]]
|[[Branding|Branding]]
|[[Branding|Branding]]
}}
}}
Line 34: Line 38:
</translate>
</translate>
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

[[Category:Developer_Documentation{{#translation:}}]]
[[Category:Developer_Documentation{{#translation:}}]]
[[Category:Testing{{#translation:}}]]
[[Category:Testing{{#translation:}}]]

{{clear}}
{{clear}}

Revision as of 21:36, 29 December 2020

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