Skip to content
This repository was archived by the owner on Mar 31, 2019. It is now read-only.

Commit d7c8d52

Browse files
committed
Add initial CI and badges
1 parent 5f9cfae commit d7c8d52

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: cpp
2+
3+
matrix:
4+
include:
5+
- os: linux
6+
dist: trusty
7+
sudo: required
8+
compiler: gcc
9+
env: BADGE=linux
10+
addons:
11+
apt:
12+
packages:
13+
- libsdl1.2-dev
14+
- libgtk2.0-dev
15+
script:
16+
- true
17+
- os: osx
18+
env: BADGE=osx
19+
script:
20+
- true

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# SheepShaver
22
MacOS run-time environment for BeOS and Linux
33

4+
Platform | CI Status|
5+
---------|:----------------
6+
AmigaOS | Deprecate 💀
7+
BeOS | Deprecate 💀
8+
FreeBSD | [Costs 💰](https://cirrus-ci.org/pricing/)
9+
Linux | [![Linux Build Status](http://badges.herokuapp.com/travis/emaculation/SheepShaver?env=BADGE=linux&label=build&branch=master)](https://travis-ci.org/emaculation/SheepShaver)
10+
OSX | [![OSX Build Status](http://badges.herokuapp.com/travis/emaculation/SheepShaver?env=BADGE=osx&label=build&branch=master)](https://travis-ci.org/emaculation/SheepShaver) Null ⚠️
11+
Windows | [![Windows Build status](https://ci.appveyor.com/api/projects/status/pxw2cf78ls0ee3ff/branch/master?svg=true)](https://ci.appveyor.com/project/ianfixes/SheepShaver) Null ⚠️
12+
413
Originally hosted at https://sheepshaver.cebix.net/

appveyor.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
install:
2+
- set PATH=C:\cygwin\bin;C:\cygwin64\bin;%PATH%
3+
- '%CYG_ROOT%\setup-%CYG_ARCH%.exe -qnNdO -R %CYG_ROOT% -s http://cygwin.mirror.constant.com -l %CYG_ROOT%/var/cache/setup -P autoconf -P automake -P bison -P libgmp-devel -P gcc-core -P gcc-g++ -P mingw-runtime -P mingw-binutils -P mingw-gcc-core -P mingw-gcc-g++ -P mingw-pthreads -P mingw-w32api -P libtool -P make -P gettext-devel -P gettext -P intltool -P libiconv -P pkg-config -P git -P wget -P curl'
4+
5+
environment:
6+
matrix:
7+
- CYG_ARCH: x86_64
8+
CYG_ROOT: C:/cygwin64
9+
10+
build: off
11+
12+
before_test:
13+
- gcc -v
14+
- g++ -v
15+
16+
test_script:
17+
# https://help.appveyor.com/discussions/problems/5170-progresspreference-not-works-always-shown-preparing-modules-for-first-use-in-stderr
18+
- ps: $ProgressPreference = "SilentlyContinue"

0 commit comments

Comments
 (0)