1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

APPVEYOR: Fix incorrect environment variable names

Remove irrelevant travis CI references that are no longer used at all
This commit is contained in:
Mark Pizzolato 2023-10-15 19:10:22 -10:00
parent 05458260c7
commit 3ac5062c12
3 changed files with 3 additions and 47 deletions

View File

@ -1,24 +0,0 @@
os:
- linux
- osx
language: c
osx_image: xcode12
env:
# These are supposed to match ALL in makefile.
# Each job builds 15 simulators.
- SIM="pdp1 pdp4 pdp6 pdp7 pdp8 pdp9 pdp10 pdp10-ka pdp10-ki pdp10-kl pdp11 pdp15 vax microvax3900 microvax1 rtvax1000"
- SIM="microvax2 vax730 vax750 vax780 vax8200 vax8600 microvax2000 infoserver100 infoserver150vxt microvax3100 microvax3100e vaxstation3100m30 vaxstation3100m38 vaxstation3100m76 vaxstation4000m60"
- SIM="microvax3100m80 vaxstation4000vlc infoserver1000 nova eclipse hp2100 hp3000 i1401 i1620 s3 altair altairz80 gri i7094 ibm1130"
- SIM="id16 id32 sds lgp h316 cdc1700 swtp6800mp-a swtp6800mp-a2 tx-0 ssem b5500"
- SIM="besm6 imlac tt2500 intel-mds"
- SIM="scelbi 3b2 i701 i704 i7010 i7070 i7080 i7090 sigma uc15 i650"
# These are supposed to match experimental in makefile.
- SIM="alpha pdq3 sage"
sudo: required
install: sh -ex .travis/deps.sh "$TRAVIS_OS_NAME"
script: make $SIM
notifications:
email:
recipients:
- Mark@infocomm.com
- lars@nocrew.org

View File

@ -1,20 +0,0 @@
#!/bin/sh
install_osx() {
brew update
brew install pcre
brew install libedit
brew install sdl2
brew install libpng
brew install sdl2_ttf
brew install vde
}
install_linux() {
sudo apt-get update -yqqm
sudo apt-get install -ym libegl1-mesa-dev libgles2-mesa-dev
sudo apt-get install -ym libpcap-dev libvdeplug-dev libpcre3-dev libedit-dev libsdl2-dev libpng-dev libsdl2-ttf-dev
}
install_"$1"

View File

@ -120,9 +120,9 @@ on_success:
("$env:APPVEYOR_REPO_BRANCH" -eq "master")) {
("$platform Build") | Out-File -FilePath ../Save-Build-Results
}
Write-Output "Building repo '$env:APPVEYOR_REPO_NAME' branch: $env:APPVEYOR_PULL_REPO_BRANCH"
if (("$env:APPVEYOR_PULL_REPO_NAME" -ne "simh/simh") -or
("$env:APPVEYOR_PULL_REPO_BRANCH" -ne "master")) {
Write-Output "Building repo '$env:APPVEYOR_REPO_NAME' branch: $env:APPVEYOR_REPO_BRANCH"
if (("$env:APPVEYOR_REPO_NAME" -ne "simh/simh") -or
("$env:APPVEYOR_REPO_BRANCH" -ne "master")) {
Write-Output "Skipping Saving binaries for non simh/simh master branch CI build"
} else {
if ((Get-Date -UFormat %s) -lt $recent_saved_commit_time + $oneweek) {