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

CI/CD: Only run builds for now. Avoid saving build results.

This commit is contained in:
Mark Pizzolato 2025-06-08 08:59:57 -10:00
parent 44aef3392e
commit 41c11df753

View File

@ -31,7 +31,7 @@ before_build:
sudo apt-get install -ym gcc libpcap-dev libvdeplug-dev libpcre3-dev libedit-dev libsdl2-dev libpng-dev libsdl2-ttf-dev sudo apt-get install -ym gcc libpcap-dev libvdeplug-dev libpcre3-dev libedit-dev libsdl2-dev libpng-dev libsdl2-ttf-dev
} else { } else {
if ($platform -eq 'Darwin') { if ($platform -eq 'Darwin') {
$env:HOMEBREW_NO_AUTO_UPDATE=1; brew install vde pcre libedit sdl2 libpng zlib sdl2_ttf make git-lfs $env:HOMEBREW_NO_AUTO_UPDATE=1; brew install pcre libedit sdl2 libpng zlib sdl2_ttf make git-lfs
} }
} }
git lfs install git lfs install
@ -75,75 +75,75 @@ on_success:
- git config --global user.name "Mark Pizzolato" - git config --global user.name "Mark Pizzolato"
- git config --global core.autocrlf false - git config --global core.autocrlf false
# Linux & macOS use the shell to address this, Windows uses cmd. Powershell on Windows doesn't like git output to stderr # Linux & macOS use the shell to address this, Windows uses cmd. Powershell on Windows doesn't like git output to stderr
- sh: | # - sh: |
if test -d ../Development-Binaries # if test -d ../Development-Binaries
then # then
pushd ../Development-Binaries # pushd ../Development-Binaries
git pull origin master # git pull origin master
popd # popd
else # else
pushd .. # pushd ..
git clone -q "https://github.com/simh/Development-Binaries" Development-Binaries # git clone -q "https://github.com/simh/Development-Binaries" Development-Binaries
popd # popd
fi # fi
- cmd: | # - cmd: |
if NOT EXIST ..\Development-Binaries pushd .. & git clone -q "https://github.com/simh/Development-Binaries" Development-Binaries & popd # if NOT EXIST ..\Development-Binaries pushd .. & git clone -q "https://github.com/simh/Development-Binaries" Development-Binaries & popd
pushd ..\Development-Binaries & git pull origin master & popd # pushd ..\Development-Binaries & git pull origin master & popd
- ps: | # - ps: |
cd ../Development-Binaries # cd ../Development-Binaries
$pkg_filename = "simh-$datetime-$platform-$arch-$version_major.$version_minor-$version_mode-$id" # $pkg_filename = "simh-$datetime-$platform-$arch-$version_major.$version_minor-$version_mode-$id"
if ($isWindows) { # if ($isWindows) {
$pkg_filename = $pkg_filename + '.zip' # $pkg_filename = $pkg_filename + '.zip'
Compress-Archive -Path $env:APPVEYOR_BUILD_FOLDER\BIN\NT\Win32-Release\*.exe -DestinationPath "$pkg_filename" # Compress-Archive -Path $env:APPVEYOR_BUILD_FOLDER\BIN\NT\Win32-Release\*.exe -DestinationPath "$pkg_filename"
} else { # } else {
$pkg_filename = $pkg_filename + '.tgz' # $pkg_filename = $pkg_filename + '.tgz'
pushd $env:APPVEYOR_BUILD_FOLDER/BIN # pushd $env:APPVEYOR_BUILD_FOLDER/BIN
tar -cvzf ../../Development-Binaries/$pkg_filename --exclude=buildtools --exclude=NT '--exclude=*-build' * # tar -cvzf ../../Development-Binaries/$pkg_filename --exclude=buildtools --exclude=NT '--exclude=*-build' *
popd # popd
} # }
"$platform Build results for simh Commit: https://github.com/simh/simh/commit/$id" | Out-File -FilePath ../pkg_commit_message -Encoding Ascii # "$platform Build results for simh Commit: https://github.com/simh/simh/commit/$id" | Out-File -FilePath ../pkg_commit_message -Encoding Ascii
(Get-Content README.md) -replace ('(\['+$platform+' is here\]\(https\:\/\/github\.com\/simh\/Development-Binaries\/blob\/master\/)([a-zA-Z0-9._-]+)(.+\.)'),('$1'+$pkg_filename+'$3') | Out-File -FilePath README.md -Encoding Ascii # (Get-Content README.md) -replace ('(\['+$platform+' is here\]\(https\:\/\/github\.com\/simh\/Development-Binaries\/blob\/master\/)([a-zA-Z0-9._-]+)(.+\.)'),('$1'+$pkg_filename+'$3') | Out-File -FilePath README.md -Encoding Ascii
$recent_saved_commit = git log -1 --grep="$platform Build" --pretty=format:%H # $recent_saved_commit = git log -1 --grep="$platform Build" --pretty=format:%H
$recent_saved_commit_time = git log -1 --pretty="%at" $recent_saved_commit # $recent_saved_commit_time = git log -1 --pretty="%at" $recent_saved_commit
$oneweek=$((60 * 60 * 24 * 7)) # $oneweek=$((60 * 60 * 24 * 7))
# Only update the https://github.com/simh/DevelopmentBinaries repository # # Only update the https://github.com/simh/DevelopmentBinaries repository
# during CI/CD processing of direct commits pushed to the # # during CI/CD processing of direct commits pushed to the
# https://github.com/simh/simh repository (i.e. don't update the # # https://github.com/simh/simh repository (i.e. don't update the
# DevelopmentBinaries when CI/CD actions are being done on external # # DevelopmentBinaries when CI/CD actions are being done on external
# pull requests. # # pull requests.
# Additionally, only update the https://github.com/simh/DevelopmentBinaries # # Additionally, only update the https://github.com/simh/DevelopmentBinaries
# repository if the current build for this platform is one week or more # # repository if the current build for this platform is one week or more
# from the last saved build for this platform in the repository # # from the last saved build for this platform in the repository
if (((Get-Date -UFormat %s) -gt $recent_saved_commit_time + $oneweek) -and # if (((Get-Date -UFormat %s) -gt $recent_saved_commit_time + $oneweek) -and
("$env:APPVEYOR_PULL_REQUEST_NUMBER" -eq "") -and 0) { # ("$env:APPVEYOR_PULL_REQUEST_NUMBER" -eq "") -and 0) {
("$platform Build") | Out-File -FilePath ../Save-Build-Results # ("$platform Build") | Out-File -FilePath ../Save-Build-Results
} # }
Write-Output "Building repo '$env:APPVEYOR_REPO_NAME' branch: $env:APPVEYOR_REPO_BRANCH" # Write-Output "Building repo '$env:APPVEYOR_REPO_NAME' branch: $env:APPVEYOR_REPO_BRANCH"
if ("$env:APPVEYOR_PULL_REQUEST_NUMBER" -ne "") { # if ("$env:APPVEYOR_PULL_REQUEST_NUMBER" -ne "") {
Write-Output "Skipping Saving binaries for pull request $env:APPVEYOR_PULL_REQUEST_NUMBER CI build" # Write-Output "Skipping Saving binaries for pull request $env:APPVEYOR_PULL_REQUEST_NUMBER CI build"
} else { # } else {
if ((Get-Date -UFormat %s) -lt $recent_saved_commit_time + $oneweek) { # if ((Get-Date -UFormat %s) -lt $recent_saved_commit_time + $oneweek) {
Write-Output "Skipping Saving binaries since the last one was saved " + (([System.DateTimeOffset]::FromUnixTimeSeconds($recent_saved_commit_time)).DateTime).ToString() # Write-Output "Skipping Saving binaries since the last one was saved " + (([System.DateTimeOffset]::FromUnixTimeSeconds($recent_saved_commit_time)).DateTime).ToString()
} # }
} # }
# Linux & macOS use the shell to perform git activities. # # Linux & macOS use the shell to perform git activities.
# Windows uses cmd. Poweshell on Windows doesn't like git output to stderr # # Windows uses cmd. Poweshell on Windows doesn't like git output to stderr
- sh: | # - sh: |
if [ -f ../Save-Build-Results ] # if [ -f ../Save-Build-Results ]
then # then
git add * # git add *
git commit -F ../pkg_commit_message # git commit -F ../pkg_commit_message
git push -u origin master # git push -u origin master
else # else
# clean up the un-committed pieces so the cache is maintained correctly # # clean up the un-committed pieces so the cache is maintained correctly
git reset --hard # git reset --hard
fi # fi
- cmd: | # - cmd: |
if EXIST ..\Save-Build-Results git add * # if EXIST ..\Save-Build-Results git add *
if EXIST ..\Save-Build-Results git commit -F ../pkg_commit_message # if EXIST ..\Save-Build-Results git commit -F ../pkg_commit_message
if EXIST ..\Save-Build-Results git push -u origin master # if EXIST ..\Save-Build-Results git push -u origin master
rem clean up the un-committed pieces so the cache is maintained correctly # rem clean up the un-committed pieces so the cache is maintained correctly
if NOT EXIST ..\Save-Build-Results git reset --hard # if NOT EXIST ..\Save-Build-Results git reset --hard
notifications: notifications:
- provider: Email - provider: Email