renaming tests to samples on workflows

This commit is contained in:
alemuntoni 2020-06-19 16:14:50 +02:00
parent d4bd7f1407
commit d907a3887c
4 changed files with 12 additions and 12 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.
![BuildTestsUbuntu](https://github.com/cnr-isti-vclab/vcglib/workflows/BuildTestsUbuntu/badge.svg) ![BuildSamplesUbuntu](https://github.com/cnr-isti-vclab/vcglib/workflows/BuildSamplesUbuntu/badge.svg)
![BuildTestsMacOS](https://github.com/cnr-isti-vclab/vcglib/workflows/BuildTestsMacOS/badge.svg) ![BuildSamplesMacOS](https://github.com/cnr-isti-vclab/vcglib/workflows/BuildSamplesMacOS/badge.svg)
![BuildTestsWindows](https://github.com/cnr-isti-vclab/vcglib/workflows/BuildTestsWindows/badge.svg) ![BuildSamplesWindows](https://github.com/cnr-isti-vclab/vcglib/workflows/BuildSamplesWindows/badge.svg)
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.