Continuous Integration/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/ru |FreeCAD Build Tool |Branding }}")
(Updating to match new version of source page)
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
{{Docnav/ru
{{Docnav/ru
|[[FreeCAD_Build_Tool/ru|FreeCAD Build Tool]]
|[[FreeCAD_Build_Tool/ru|FreeCAD Build Tool]]
|[[Branding/ru|Branding]]
|[[Branding/ru|Брэндинг]]
}}
}}


Line 9: Line 9:


== Continuous Integration ==
== Continuous Integration ==
Currently the FreeCAD repository 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 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]].
=== TravisCI ===
[[File:Travis-logo.png|50px|left]]
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

=== Appveyor ===
[[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


== Tips ==
== Tips ==
- 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 {{Incode|[skip ci]}} or {{Incode|[ci skip]}} to a git commit it will cancel a CI build.
=== Relevant Links ===
* [[LGTM|LGTM]]


== Relevant links ==


* Forum post announcing new CIs: [https://forum.freecad.org/viewtopic.php?p=657956 New CI is yours :)]
{{Docnav

|[[FreeCAD_Build_Tool|FreeCAD Build Tool]]

|[[Branding|Branding]]
{{Docnav/ru
|[[FreeCAD_Build_Tool/ru|FreeCAD Build Tool]]
|[[Branding/ru|Branding]]
}}
}}



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