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)
 
(32 intermediate revisions by 8 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.
=== TravisCI ===
Tests against Linux and OSX. The config file is called .travis.yml and it lives in the top directory of FreeCAD


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


</translate>
=== Appveyor ===
{{TOCright}}
Tests against Windows. The config file is called .appveyor.yml and it lives in the top directory of FreeCAD
<translate>


== Continuous Integration == <!--T:10-->
== Tips ==
- If you add [skip ci] or [ci skip] to a git commit it will cancel a CI skip.


<!--T:1-->
[[CategoryːDevelopers]]
Currently the FreeCAD repository on GitHub will trigger a build on several CI systems. Between these systems pretty much all the main OSs are coveredː Linux, macOS, and Windows. CIs can also be used to run [[Testing|unit tests]].

== Tips == <!--T:11-->

<!--T:4-->
* If you add {{Incode|[skip ci]}} or {{Incode|[ci skip]}} to a git commit it will cancel a CI build.

== Relevant links == <!--T:12-->

<!--T:13-->
* Forum post announcing new CIs: [https://forum.freecad.org/viewtopic.php?p=657956 New CI is yours :)]


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

</translate>
{{Userdocnavi{{#translation:}}}}
[[Category:Developer_Documentation{{#translation:}}]]
[[Category:Testing{{#translation:}}]]
{{clear}}

Latest revision as of 15:26, 25 February 2023

Continuous Integration

Currently the FreeCAD repository on GitHub will trigger a build on several CI systems. Between these systems pretty much all the main OSs are coveredː Linux, macOS, and Windows. CIs can also be used to run unit tests.

Tips

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

Relevant links