Continuous Integration/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Integrazione Continua == Attualmente il repository di FreeCAD su GitHub attiverà una build sui due sistemi CI seguenti. Tra questi sistemi sono coperti praticamente tutti...")
(Created page with "=== TravisCI === 50px|sinistra Test su Linux e OSX. Il file di configurazione si chiama [https://github.com/FreeCAD/FreeCAD/blob/master/.travis.yml .t...")
Line 11: Line 11:


=== TravisCI ===
=== TravisCI ===
[[File:Travis-logo.png|50px|left]]
[[File:Travis-logo.png|50px|sinistra]]
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.
Test su Linux e OSX. Il file di configurazione si chiama [https://github.com/FreeCAD/FreeCAD/blob/master/.travis.yml .travis.yml] e si trova nella directory principale di FreeCAD.
To view current and past buildsː https://travis-ci.com/FreeCAD/FreeCAD/builds
Per visualizzare le build attuali e passateː https://travis-ci.com/FreeCAD/FreeCAD/builds


=== Appveyor ===
=== Appveyor ===

Revision as of 20:16, 13 October 2022

Integrazione Continua

Attualmente il repository di FreeCAD su GitHub attiverà una build sui due sistemi CI seguenti. Tra questi sistemi sono coperti praticamente tutti i principali sistemi operativi multipiattaforma Linux, MacOSX e Windows. Gli elementi della configurazione possono essere utilizzati anche per eseguire unità test.

TravisCI

sinistra Test su Linux e OSX. Il file di configurazione si chiama .travis.yml e si trova nella directory principale di FreeCAD. Per visualizzare le build attuali e passateː https://travis-ci.com/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