-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Truncating .travis.yml for faster/more credit-friendly :) testing of …
…Travis deploy/ruby problem
- Loading branch information
Showing
1 changed file
with
0 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,130 +79,6 @@ matrix: | |
- dev | ||
after_deploy: | ||
- build/deploy/discord-webhook.sh success "Ubuntu Linux DEB" ANY:DISCORD_XEMU_SERVER_TEST_CHANNEL_WEBHOOK master,next:DISCORD_MEGA65_SERVER_XEMU_CHANNEL_WEBHOOK || true | ||
- name: Windows cross-compilation on Linux | ||
os: linux | ||
addons: | ||
hostname: lgb | ||
apt: | ||
packages: | ||
- binutils-mingw-w64-i686 | ||
- binutils-mingw-w64-x86-64 | ||
- bzip2 | ||
- coreutils | ||
- curl | ||
- file | ||
- gawk | ||
- gcc-mingw-w64-i686 | ||
- gcc-mingw-w64-x86-64 | ||
- make | ||
- nsis | ||
- sed | ||
- tar | ||
- vim-common | ||
- wget | ||
- zip | ||
before_script: | ||
- echo "127.126.125.124 lgb" | sudo tee -a /etc/hosts 2>/dev/null || true | ||
- cat /etc/hosts || true | ||
- hostname | ||
- set +e | ||
- uname -a ; pwd ; df -h ; id -a | ||
- set -e | ||
- build/install-cross-win-mingw-sdl-on-linux.sh /usr/bin | ||
- set +e | ||
- ps auxwwww || true | ||
- uptime | ||
- build/show-git-info | ||
script: | ||
- set -e | ||
- make -j 2 ARCH=win64 RELEASE=yes OFFICIALBUILD=yes | ||
- set +e | ||
- for a in build/bin/*.win64 ; do x86_64-w64-mingw32-strip $a ; ls -l $a ; done | ||
- cp README.md LICENSE AUTHORS `x86_64-w64-mingw32-sdl2-config --prefix`/bin/*.dll build/bin/ | ||
- build/zipper.sh build/bin xemu-binaries-win64.zip build/bin/*.dll build/bin/*.win64 README.md LICENSE AUTHORS | ||
- cp build/bin/xemu-binaries-win64.zip . | ||
- build/nsi-build-native.sh win64 `build/system-config win64 sdl2 dll` || true | ||
- cp build/bin/install-xemu-win64.exe . || true | ||
- set -e | ||
- make -j 2 ARCH=win32 RELEASE=yes OFFICIALBUILD=yes | ||
- set +e | ||
- for a in build/bin/*.win32 ; do i686-w64-mingw32-strip $a ; ls -l $a ; done | ||
- cp README.md LICENSE AUTHORS `i686-w64-mingw32-sdl2-config --prefix`/bin/*.dll build/bin/ | ||
- build/zipper.sh build/bin xemu-binaries-win32.zip build/bin/*.dll build/bin/*.win32 README.md LICENSE AUTHORS | ||
- cp build/bin/xemu-binaries-win32.zip . | ||
- build/nsi-build-native.sh win32 `build/system-config win32 sdl2 dll` || true | ||
- cp build/bin/install-xemu-win32.exe . || true | ||
- uptime ; pwd ; ls -l | ||
before_deploy: | ||
- build/deploy/before-deploy.sh xemu-deploy Windows | ||
deploy: | ||
provider: pages | ||
local_dir: xemu-deploy | ||
skip_cleanup: true | ||
github_token: $GHDEPLOYKEY2 | ||
keep_history: false | ||
repo: lgblgblgb/xemu-binaries | ||
target_branch: binary-windows-$TRAVIS_BRANCH | ||
email: [email protected] | ||
name: Gábor Lénárt aka. LGB | ||
verbose: false | ||
on: | ||
branch: | ||
- master | ||
- next | ||
- dev | ||
after_deploy: | ||
- build/deploy/discord-webhook.sh success "Windows" ANY:DISCORD_XEMU_SERVER_TEST_CHANNEL_WEBHOOK master,next:DISCORD_MEGA65_SERVER_XEMU_CHANNEL_WEBHOOK || true | ||
- name: MacOS native compilation | ||
os: osx | ||
osx_image: xcode11 | ||
addons: | ||
hostname: lgb | ||
before_script: | ||
- echo "127.126.125.124 lgb" | sudo tee -a /etc/hosts 2>/dev/null || true | ||
- cat /etc/hosts || true | ||
- hostname | ||
- sudo /usr/bin/csrutil status || true | ||
- build/install-dependencies-osx.sh | ||
- set +e | ||
- uname -a ; pwd ; df -h ; id -a | ||
- set -e | ||
- sdl2-config --version --prefix --cflags --libs --static-libs | ||
- set +e | ||
- ps auxwwww || true | ||
- uptime | ||
- build/show-git-info | ||
script: | ||
- set -e | ||
- make -j 2 RELEASE=yes OFFICIALBUILD=yes MACMINVER=10.6 | ||
- set +e | ||
- for a in build/bin/*.native ; do build/mangle_dylib_osx.sh $a ; strip $a ; done | ||
- build/bin/xmega65.native --help || true | ||
- cp README.md LICENSE AUTHORS build/bin/ | ||
- build/zipper.sh build/bin xemu-binaries-osx.zip build/bin/*.dylib build/bin/*.native README.md LICENSE AUTHORS | ||
- cp build/bin/xemu-binaries-osx.zip . | ||
- uptime ; pwd ; ls -l | ||
before_deploy: | ||
- build/dmg-osx-creator.sh | ||
- build/deploy/before-deploy.sh xemu-deploy MacOS | ||
deploy: | ||
provider: pages | ||
local_dir: xemu-deploy | ||
skip_cleanup: true | ||
github_token: $GHDEPLOYKEY2 | ||
keep_history: false | ||
repo: lgblgblgb/xemu-binaries | ||
target_branch: binary-osx-$TRAVIS_BRANCH | ||
email: [email protected] | ||
name: Gábor Lénárt aka. LGB | ||
verbose: false | ||
on: | ||
branch: | ||
- master | ||
- next | ||
- dev | ||
after_deploy: | ||
- build/deploy/discord-webhook.sh success "MacOS(x86)" ANY:DISCORD_XEMU_SERVER_TEST_CHANNEL_WEBHOOK master,next:DISCORD_MEGA65_SERVER_XEMU_CHANNEL_WEBHOOK || true | ||
|
||
env: | ||
global: | ||
|