mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
chore: Remove Travis (#684)
* chore: Remove Travis * Travis badge removed * remove travis from build scripts Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
This commit is contained in:
parent
17a9cd2b02
commit
521922353a
@ -1,11 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# detect CI
|
# detect CI
|
||||||
if [ -n "${TRAVIS-}" ]; then
|
if [ "$SYSTEM_COLLECTIONID" != "" ]; then
|
||||||
# Travis-CI
|
|
||||||
CI_NAME="$(echo "$TRAVIS_OS_NAME" | tr '[:upper:]' '[:lower:]')"
|
|
||||||
CI_BUILD_DIR="$TRAVIS_BUILD_DIR"
|
|
||||||
elif [ "$SYSTEM_COLLECTIONID" != "" ]; then
|
|
||||||
# Azure Pipelines
|
# Azure Pipelines
|
||||||
CI_NAME="$(echo "$AGENT_OS" | tr '[:upper:]' '[:lower:]')"
|
CI_NAME="$(echo "$AGENT_OS" | tr '[:upper:]' '[:lower:]')"
|
||||||
CI_BUILD_DIR="$BUILD_SOURCESDIRECTORY"
|
CI_BUILD_DIR="$BUILD_SOURCESDIRECTORY"
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# detect CI
|
# detect CI
|
||||||
if [ -n "${TRAVIS-}" ]; then
|
if [ "$SYSTEM_COLLECTIONID" != "" ]; then
|
||||||
# Travis-CI
|
|
||||||
CI_NAME="$(echo "$TRAVIS_OS_NAME" | tr '[:upper:]' '[:lower:]')"
|
|
||||||
CI_BUILD_DIR="$TRAVIS_BUILD_DIR"
|
|
||||||
elif [ "$SYSTEM_COLLECTIONID" != "" ]; then
|
|
||||||
# Azure Pipelines
|
# Azure Pipelines
|
||||||
CI_NAME="$(echo "$AGENT_OS" | tr '[:upper:]' '[:lower:]')"
|
CI_NAME="$(echo "$AGENT_OS" | tr '[:upper:]' '[:lower:]')"
|
||||||
CI_BUILD_DIR="$BUILD_SOURCESDIRECTORY"
|
CI_BUILD_DIR="$BUILD_SOURCESDIRECTORY"
|
||||||
|
66
.travis.yml
66
.travis.yml
@ -1,66 +0,0 @@
|
|||||||
linux: &linux
|
|
||||||
os: linux
|
|
||||||
dist: xenial
|
|
||||||
services:
|
|
||||||
- docker
|
|
||||||
osx: &osx
|
|
||||||
os: osx
|
|
||||||
|
|
||||||
cache:
|
|
||||||
- ccache
|
|
||||||
- directories:
|
|
||||||
- $HOME/brew-cache
|
|
||||||
notifications:
|
|
||||||
email: false
|
|
||||||
language: cpp
|
|
||||||
|
|
||||||
before_install:
|
|
||||||
- ./.ci/ci_install.sh
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
include:
|
|
||||||
- <<: *linux
|
|
||||||
name: "AMD64 (x64)"
|
|
||||||
env:
|
|
||||||
- DOCKER_TAG=amd64
|
|
||||||
- DOCKER_NAME="Debian Stretch (AMD64)"
|
|
||||||
- PLATFORM="x11"
|
|
||||||
- <<: *linux
|
|
||||||
name: "i386 (x86)"
|
|
||||||
env:
|
|
||||||
- DOCKER_TAG=i386
|
|
||||||
- DOCKER_NAME="Debian Stretch (i386)"
|
|
||||||
- PLATFORM="x11"
|
|
||||||
# ////////////////////////////////////////////////////////////////
|
|
||||||
# NOTE: Temporary disabled because travis timeouts
|
|
||||||
# ////////////////////////////////////////////////////////////////
|
|
||||||
# - <<: *linux
|
|
||||||
# name: "ARMv6hf (Raspberry Pi v1 & ZERO)"
|
|
||||||
# env:
|
|
||||||
# - DOCKER_TAG=armv6hf
|
|
||||||
# - DOCKER_NAME="Debian Stretch (Raspberry Pi v1 & ZERO)"
|
|
||||||
# - PLATFORM="rpi"
|
|
||||||
# - <<: *linux
|
|
||||||
# name: "ARMv7hf (Raspberry Pi 2 & 3)"
|
|
||||||
# env:
|
|
||||||
# - DOCKER_TAG=armv7hf
|
|
||||||
# - DOCKER_NAME="Debian Stretch (Raspberry Pi 2 & 3)"
|
|
||||||
# - PLATFORM="rpi"
|
|
||||||
# - <<: *linux
|
|
||||||
# name: "ARMv8 (Generic AARCH64)"
|
|
||||||
# env:
|
|
||||||
# - DOCKER_TAG=aarch64
|
|
||||||
# - DOCKER_NAME="ARMv8 (Generic AARCH64)"
|
|
||||||
# - PLATFORM="amlogic"
|
|
||||||
#
|
|
||||||
# ////////////////////////////////////////////////////////////////
|
|
||||||
- <<: *osx
|
|
||||||
osx_image: xcode11.2
|
|
||||||
name: "macOS 10.14 (Xcode 11.2.1)"
|
|
||||||
env:
|
|
||||||
- HOMEBREW_CACHE=$HOME/brew-cache
|
|
||||||
- PLATFORM="osx"
|
|
||||||
|
|
||||||
script:
|
|
||||||
- ./.ci/ci_build.sh
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
[![Dependencies](https://img.shields.io/librariesio/github/hyperion-project/hyperion.ng.svg)](https://github.com/hyperion-project/hyperion.ng/tree/master/dependencies/external)
|
[![Dependencies](https://img.shields.io/librariesio/github/hyperion-project/hyperion.ng.svg)](https://github.com/hyperion-project/hyperion.ng/tree/master/dependencies/external)
|
||||||
[![Azure-Pipeline](https://dev.azure.com/Hyperion-Project/Hyperion.NG/_apis/build/status/Hyperion.NG?branchName=master)](https://dev.azure.com/Hyperion-Project/Hyperion.NG/_build/latest?definitionId=7&branchName=master)
|
[![Azure-Pipeline](https://dev.azure.com/Hyperion-Project/Hyperion.NG/_apis/build/status/Hyperion.NG?branchName=master)](https://dev.azure.com/Hyperion-Project/Hyperion.NG/_build/latest?definitionId=7&branchName=master)
|
||||||
[![Travis-CI](https://travis-ci.org/hyperion-project/hyperion.ng.svg?branch=master)](https://travis-ci.org/hyperion-project/hyperion.ng)
|
|
||||||
[![GitHub Actions](https://github.com/hyperion-project/hyperion.ng/workflows/GitHub%20Actions/badge.svg)](https://github.com/hyperion-project/hyperion.ng/actions)
|
[![GitHub Actions](https://github.com/hyperion-project/hyperion.ng/workflows/GitHub%20Actions/badge.svg)](https://github.com/hyperion-project/hyperion.ng/actions)
|
||||||
[![LGTM](https://img.shields.io/lgtm/alerts/g/hyperion-project/hyperion.ng.svg)](https://lgtm.com/projects/g/hyperion-project/hyperion.ng/alerts/)
|
[![LGTM](https://img.shields.io/lgtm/alerts/g/hyperion-project/hyperion.ng.svg)](https://lgtm.com/projects/g/hyperion-project/hyperion.ng/alerts/)
|
||||||
[![Documentation](https://codedocs.xyz/hyperion-project/hyperion.ng.svg)](https://codedocs.xyz/hyperion-project/hyperion.ng/)
|
[![Documentation](https://codedocs.xyz/hyperion-project/hyperion.ng.svg)](https://codedocs.xyz/hyperion-project/hyperion.ng/)
|
||||||
|
Loading…
Reference in New Issue
Block a user