1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 12:20:22 +00:00
This commit is contained in:
Luke Ceddia 2018-01-13 02:06:04 +11:00
parent 3505500d14
commit d459837ec4
5 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
mv setup_win.bat internal\ mv setup_win.bat internal\
$filename = "appveyor" + (get-date -uformat "%Y-%m-%d-%H-%M-%S") + "_" + $Env:APPVEYOR_REPO_COMMIT.Substring(0,7) + "-" + $Env:APPVEYOR_REPO_BRANCH + "_win.7z" $filename = "qb64_" + (get-date -uformat "%Y-%m-%d-%H-%M-%S") + "_" + $Env:APPVEYOR_REPO_COMMIT.Substring(0,7) + "-" + $Env:APPVEYOR_REPO_BRANCH + "_win.7z"
cd .. cd ..
qb64\internal\c\c_compiler\7z\7za.exe a '-xr@qb64\.travis\common-exclusion.list' '-xr@qb64\.travis\win-exclusion.list' $filename qb64 qb64\internal\c\c_compiler\7z\7za.exe a '-xr@qb64\.travis\common-exclusion.list' '-xr@qb64\.travis\win-exclusion.list' $filename qb64
scp -o StrictHostKeyChecking=no $filename m6rosupy1q2t@qb64.org:autobuilds/$Env:APPVEYOR_REPO_BRANCH/ scp -q -o StrictHostKeyChecking=no $filename m6rosupy1q2t@qb64.org:autobuilds/$Env:APPVEYOR_REPO_BRANCH/

View file

@ -41,6 +41,7 @@ c_compiler\bin\g++ -mconsole -s -Wfatal-errors -w -Wall qbx.cpp libqb\os\win\lib
IF ERRORLEVEL 1 exit /b 1 IF ERRORLEVEL 1 exit /b 1
cd ..\.. cd ..\..
echo Compiling new QB64
echo AutoBuildMsg$ = CHR$(10) + "From git %APPVEYOR_REPO_COMMIT:~0,7%" + CHR$(10) >> source\global\version.bas echo AutoBuildMsg$ = CHR$(10) + "From git %APPVEYOR_REPO_COMMIT:~0,7%" + CHR$(10) >> source\global\version.bas
qb64_bootstrap.exe -x source\qb64.bas -o qb64.exe qb64_bootstrap.exe -x source\qb64.bas -o qb64.exe
IF ERRORLEVEL 1 exit /b 1 IF ERRORLEVEL 1 exit /b 1

View file

@ -1,5 +1,6 @@
.travis .travis
.travis.yml .travis.yml
appveyor.yml
.git .git
.gitignore .gitignore

View file

@ -1,6 +1,7 @@
setup_lnx.sh setup_lnx.sh
setup_osx.command setup_osx.command
qb64_start_osx.command qb64_start_osx.command
secure-file
qb64\internal\c\c_compiler\bin qb64\internal\c\c_compiler\bin
qb64\internal\c\c_compiler\i686-w64-mingw32 qb64\internal\c\c_compiler\i686-w64-mingw32
qb64\internal\c\c_compiler\include qb64\internal\c\c_compiler\include

View file

@ -11,6 +11,4 @@ install:
- cmd: secure-file\tools\secure-file -decrypt .travis\qb64.org_rsa.enc -secret %sshkey% -out %userprofile%\.ssh\id_rsa - cmd: secure-file\tools\secure-file -decrypt .travis\qb64.org_rsa.enc -secret %sshkey% -out %userprofile%\.ssh\id_rsa
deploy_script: deploy_script:
- ps: .travis\appveyor-deploy.ps1 - ps: .travis\appveyor-deploy.ps1
test: off test: off
on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))