mirror of
https://github.com/BlackMATov/vmath.hpp.git
synced 2025-12-15 04:35:25 +07:00
update readme badges, remove travis and appveyor
This commit is contained in:
@@ -1,28 +0,0 @@
|
|||||||
image:
|
|
||||||
- Visual Studio 2017
|
|
||||||
- Visual Studio 2019
|
|
||||||
|
|
||||||
platform:
|
|
||||||
- x86
|
|
||||||
- x64
|
|
||||||
|
|
||||||
configuration:
|
|
||||||
- Release
|
|
||||||
|
|
||||||
for:
|
|
||||||
|
|
||||||
-
|
|
||||||
matrix:
|
|
||||||
only:
|
|
||||||
- platform: x86
|
|
||||||
configuration: Release
|
|
||||||
build_script:
|
|
||||||
- .ci\build_windows_x86.bat
|
|
||||||
|
|
||||||
-
|
|
||||||
matrix:
|
|
||||||
only:
|
|
||||||
- platform: x64
|
|
||||||
configuration: Release
|
|
||||||
build_script:
|
|
||||||
- .ci\build_windows_x64.bat
|
|
||||||
4
.github/workflows/coverage.yml
vendored
4
.github/workflows/coverage.yml
vendored
@@ -8,7 +8,7 @@ jobs:
|
|||||||
name: "coverage"
|
name: "coverage"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: install lcov
|
- name: Install lcov by Homebrew
|
||||||
run: brew install lcov
|
run: brew install lcov
|
||||||
- name: build
|
- name: Build && Test && Upload
|
||||||
run: .ci/build_coverage.sh
|
run: .ci/build_coverage.sh
|
||||||
|
|||||||
4
.github/workflows/darwin.yml
vendored
4
.github/workflows/darwin.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
name: "xcode-${{matrix.config.xcode}}"
|
name: "xcode-${{matrix.config.xcode}}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: select xcode
|
- name: Select Xcode
|
||||||
run: sudo xcode-select --switch "/Applications/Xcode_${{matrix.config.xcode}}.app"
|
run: sudo xcode-select --switch "/Applications/Xcode_${{matrix.config.xcode}}.app"
|
||||||
- name: build
|
- name: Build && Test
|
||||||
run: .ci/build_darwin.sh
|
run: .ci/build_darwin.sh
|
||||||
|
|||||||
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
@@ -20,6 +20,6 @@ jobs:
|
|||||||
name: "${{matrix.config.cxx}}"
|
name: "${{matrix.config.cxx}}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: build
|
- name: Build && Test
|
||||||
run: .ci/build_linux.sh
|
run: .ci/build_linux.sh
|
||||||
env: { CC: "${{matrix.config.cc}}", CXX: "${{matrix.config.cxx}}" }
|
env: { CC: "${{matrix.config.cc}}", CXX: "${{matrix.config.cxx}}" }
|
||||||
|
|||||||
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
@@ -17,5 +17,5 @@ jobs:
|
|||||||
name: "${{matrix.config.vs}}"
|
name: "${{matrix.config.vs}}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: build
|
- name: Build && Test
|
||||||
run: .ci\build_windows_${{matrix.config.arch}}.bat
|
run: .ci\build_windows_${{matrix.config.arch}}.bat
|
||||||
|
|||||||
89
.travis.yml
89
.travis.yml
@@ -1,89 +0,0 @@
|
|||||||
git:
|
|
||||||
depth: false
|
|
||||||
quiet: true
|
|
||||||
|
|
||||||
language: cpp
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
include:
|
|
||||||
|
|
||||||
#
|
|
||||||
# linux (g++)
|
|
||||||
#
|
|
||||||
|
|
||||||
- os: linux
|
|
||||||
dist: bionic
|
|
||||||
stage: linux
|
|
||||||
name: g++-7
|
|
||||||
addons: { apt: { sources: ["ubuntu-toolchain-r-test"], packages: ["g++-7"] } }
|
|
||||||
env: CC=gcc-7 CXX=g++-7
|
|
||||||
script: .ci/build_linux.sh
|
|
||||||
|
|
||||||
- os: linux
|
|
||||||
dist: bionic
|
|
||||||
stage: linux
|
|
||||||
name: g++-8
|
|
||||||
addons: { apt: { sources: ["ubuntu-toolchain-r-test"], packages: ["g++-8"] } }
|
|
||||||
env: CC=gcc-8 CXX=g++-8
|
|
||||||
script: .ci/build_linux.sh
|
|
||||||
|
|
||||||
#
|
|
||||||
# linux (clang++)
|
|
||||||
#
|
|
||||||
|
|
||||||
- os: linux
|
|
||||||
dist: bionic
|
|
||||||
stage: linux
|
|
||||||
name: clang++-5.0
|
|
||||||
addons: { apt: { sources: ["ubuntu-toolchain-r-test"], packages: ["clang-5.0"] } }
|
|
||||||
env: CC=clang-5.0 CXX=clang++-5.0
|
|
||||||
script: .ci/build_linux.sh
|
|
||||||
|
|
||||||
- os: linux
|
|
||||||
dist: bionic
|
|
||||||
stage: linux
|
|
||||||
name: clang++-6.0
|
|
||||||
addons: { apt: { sources: ["ubuntu-toolchain-r-test"], packages: ["clang-6.0"] } }
|
|
||||||
env: CC=clang-6.0 CXX=clang++-6.0
|
|
||||||
script: .ci/build_linux.sh
|
|
||||||
|
|
||||||
#
|
|
||||||
# darwin
|
|
||||||
#
|
|
||||||
|
|
||||||
- os: osx
|
|
||||||
osx_image: xcode10
|
|
||||||
stage: darwin
|
|
||||||
name: xcode10
|
|
||||||
script: .ci/build_darwin.sh
|
|
||||||
|
|
||||||
- os: osx
|
|
||||||
osx_image: xcode11
|
|
||||||
stage: darwin
|
|
||||||
name: xcode11
|
|
||||||
script: .ci/build_darwin.sh
|
|
||||||
|
|
||||||
#
|
|
||||||
# windows
|
|
||||||
#
|
|
||||||
|
|
||||||
- os: windows
|
|
||||||
stage: windows
|
|
||||||
name: x86
|
|
||||||
script: .ci/build_windows_x86.bat
|
|
||||||
|
|
||||||
- os: windows
|
|
||||||
stage: windows
|
|
||||||
name: x64
|
|
||||||
script: .ci/build_windows_x64.bat
|
|
||||||
|
|
||||||
#
|
|
||||||
# coverage
|
|
||||||
#
|
|
||||||
|
|
||||||
- os: osx
|
|
||||||
osx_image: xcode10
|
|
||||||
stage: coverage
|
|
||||||
name: coverage
|
|
||||||
addons: { homebrew: { packages: ["lcov"], update: true } }
|
|
||||||
script: .ci/build_coverage.sh
|
|
||||||
24
README.md
24
README.md
@@ -2,26 +2,26 @@
|
|||||||
|
|
||||||
> C++17 tiny vector math library
|
> C++17 tiny vector math library
|
||||||
|
|
||||||
[![travis][badge.travis]][travis]
|
[![linux][badge.linux]][linux]
|
||||||
[![appveyor][badge.appveyor]][appveyor]
|
[![darwin][badge.darwin]][darwin]
|
||||||
|
[![windows][badge.windows]][windows]
|
||||||
[![codecov][badge.codecov]][codecov]
|
[![codecov][badge.codecov]][codecov]
|
||||||
[![language][badge.language]][language]
|
[![language][badge.language]][language]
|
||||||
[![license][badge.license]][license]
|
[![license][badge.license]][license]
|
||||||
[![paypal][badge.paypal]][paypal]
|
|
||||||
|
|
||||||
[badge.travis]: https://img.shields.io/travis/BlackMATov/vmath.hpp/main.svg?logo=travis
|
[badge.darwin]: https://img.shields.io/github/workflow/status/BlackMATov/vmath.hpp/darwin/main?label=Xcode&logo=xcode
|
||||||
[badge.appveyor]: https://img.shields.io/appveyor/ci/BlackMATov/vmath-hpp/main.svg?logo=appveyor
|
[badge.linux]: https://img.shields.io/github/workflow/status/BlackMATov/vmath.hpp/linux/main?label=GCC%2FClang&logo=linux
|
||||||
[badge.codecov]: https://img.shields.io/codecov/c/github/BlackMATov/vmath.hpp/main.svg?logo=codecov
|
[badge.windows]: https://img.shields.io/github/workflow/status/BlackMATov/vmath.hpp/windows/main?label=Visual%20Studio&logo=visual-studio
|
||||||
[badge.language]: https://img.shields.io/badge/language-C%2B%2B17-yellow.svg
|
[badge.codecov]: https://img.shields.io/codecov/c/github/BlackMATov/vmath.hpp/main?logo=codecov
|
||||||
[badge.license]: https://img.shields.io/badge/license-MIT-blue.svg
|
[badge.language]: https://img.shields.io/badge/language-C%2B%2B17-yellow
|
||||||
[badge.paypal]: https://img.shields.io/badge/donate-PayPal-orange.svg?logo=paypal&colorA=00457C
|
[badge.license]: https://img.shields.io/badge/license-MIT-blue
|
||||||
|
|
||||||
[travis]: https://travis-ci.org/BlackMATov/vmath.hpp
|
[darwin]: https://github.com/BlackMATov/vmath.hpp/actions?query=workflow%3Adarwin
|
||||||
[appveyor]: https://ci.appveyor.com/project/BlackMATov/vmath-hpp
|
[linux]: https://github.com/BlackMATov/vmath.hpp/actions?query=workflow%3Alinux
|
||||||
|
[windows]: https://github.com/BlackMATov/vmath.hpp/actions?query=workflow%3Awindows
|
||||||
[codecov]: https://codecov.io/gh/BlackMATov/vmath.hpp
|
[codecov]: https://codecov.io/gh/BlackMATov/vmath.hpp
|
||||||
[language]: https://en.wikipedia.org/wiki/C%2B%2B17
|
[language]: https://en.wikipedia.org/wiki/C%2B%2B17
|
||||||
[license]: https://en.wikipedia.org/wiki/MIT_License
|
[license]: https://en.wikipedia.org/wiki/MIT_License
|
||||||
[paypal]: https://www.paypal.me/matov
|
|
||||||
|
|
||||||
[vmath]: https://github.com/BlackMATov/vmath.hpp
|
[vmath]: https://github.com/BlackMATov/vmath.hpp
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user