Continuous Integration: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>
== Continuous Integration == <!--T:1-->
<!--T:7-->
{{Docnav
|[[Testing|Testing]]
|[[Branding|Branding]]
}}
</translate>
{{TOCright}}
<translate>
== 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 15: Line 23:
- If you add <code>[skip ci]</code> or <code>[ci skip]</code> to a git commit it will cancel a CI build.
- If you add <code>[skip ci]</code> or <code>[ci skip]</code> to a git commit it will cancel a CI build.


=== Relevant Links === <!--T:9-->
* [[LGTM|LGTM]]


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


<!--T:6-->
[[Category:Developer_Documentation]]
</translate>
</translate>
{{Userdocnavi{{#translation:}}}}

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

{{clear}}
{{clear}}

Revision as of 21:48, 20 February 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