renaming tests to samples on workflows
This commit is contained in:
parent
d4bd7f1407
commit
d907a3887c
|
@ -1,18 +1,18 @@
|
||||||
name: BuildTestsMacOS
|
name: BuildSamplesMacOS
|
||||||
|
|
||||||
on:
|
on:
|
||||||
[push, pull_request]
|
[push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
macos_build_tests:
|
macos_build_tests:
|
||||||
name: Build Tests (MacOS)
|
name: Build Samples (MacOS)
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v2
|
uses: jurplel/install-qt-action@v2
|
||||||
- name: Build Tests
|
- name: Build Samples
|
||||||
run: |
|
run: |
|
||||||
qmake apps/sample/sample.pro
|
qmake apps/sample/sample.pro
|
||||||
make -j4
|
make -j4
|
|
@ -1,18 +1,18 @@
|
||||||
name: BuildTestsUbuntu
|
name: BuildSamplesUbuntu
|
||||||
|
|
||||||
on:
|
on:
|
||||||
[push, pull_request]
|
[push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu_build_tests:
|
ubuntu_build_tests:
|
||||||
name: Build Tests (Ubuntu)
|
name: Build Samples (Ubuntu)
|
||||||
runs-on: ubuntu-latest #in order to deploy, need to use oldest supported version
|
runs-on: ubuntu-latest #in order to deploy, need to use oldest supported version
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v2
|
uses: jurplel/install-qt-action@v2
|
||||||
- name: Build Tests
|
- name: Build Samples
|
||||||
run: |
|
run: |
|
||||||
qmake apps/sample/sample.pro
|
qmake apps/sample/sample.pro
|
||||||
make -j4
|
make -j4
|
|
@ -1,10 +1,10 @@
|
||||||
name: BuildTestsWindows
|
name: BuildSamplesWindows
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
windows_build_tests:
|
windows_build_tests:
|
||||||
name: Build Tests (Windows)
|
name: Build Samples (Windows)
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -23,7 +23,7 @@ jobs:
|
||||||
uses: ilammy/msvc-dev-cmd@v1
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v2
|
uses: jurplel/install-qt-action@v2
|
||||||
- name: Build Tests
|
- name: Build Samples
|
||||||
run: |
|
run: |
|
||||||
qmake apps/sample/sample.pro
|
qmake apps/sample/sample.pro
|
||||||
jom -j4
|
jom -j4
|
|
@ -1,8 +1,8 @@
|
||||||
The **_Visualization and Computer Graphics Library_** (VCGlib for short) is a open source, portable, C++, templated, no dependency, library for manipulation, processing, cleaning, simplifying triangle meshes.
|
The **_Visualization and Computer Graphics Library_** (VCGlib for short) is a open source, portable, C++, templated, no dependency, library for manipulation, processing, cleaning, simplifying triangle meshes.
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
The library, composed by more than 100k lines of code, is released under the GPL license, and it is the base of most of the software tools of the [Visual Computing Lab](http://vcg.isti.cnr.it) of the Italian National Research Council Institute ISTI, like MeshLab, metro and many others.
|
The library, composed by more than 100k lines of code, is released under the GPL license, and it is the base of most of the software tools of the [Visual Computing Lab](http://vcg.isti.cnr.it) of the Italian National Research Council Institute ISTI, like MeshLab, metro and many others.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue