mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
add configure option.
This commit is contained in:
parent
f11b190ef3
commit
aafe35a822
|
|
@ -22,7 +22,7 @@ install:
|
|||
- ps: If (($env:METHOD -eq "cross") -and !(Test-Path ("msys" + $env:MSYS2_BITS))){&"7z" x msys2.tar > $nul;&("msys" + $env:MSYS2_BITS + "\usr\bin\bash") -lc "";&("msys" + $env:MSYS2_BITS + "\usr\bin\bash") -lc ("for i in {1..3}; do pacman --noconfirm -Suy autoconf automake mingw-w64-"+ $env:MSYS2_ARCH + "-gcc make zlib-devel python3 && break || sleep 15; done");&("msys" + $env:MSYS2_BITS + "\usr\bin\bash") -lc "pacman --noconfirm -R -s bash-completion tftp-hpa inetutils util-linux tzcode time dash flex pax-git file bsdcpio bsdtar lndir";&("msys" + $env:MSYS2_BITS + "\usr\bin\bash") -lc "yes|pacman --noconfirm -Sc";&("msys" + $env:MSYS2_BITS + "\autorebase.bat");}
|
||||
|
||||
build_script:
|
||||
- if "%METHOD%"=="cross" msys%MSYS2_BITS%\usr\bin\bash -lc "mkdir /tmp;cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; ./bootstrap; ./configure; make"
|
||||
- if "%METHOD%"=="cross" msys%MSYS2_BITS%\usr\bin\bash -lc "mkdir /tmp;cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; ./bootstrap; ./configure --with-platformhtml-base=$ROSWELL_PLATFORMHTML_BASE --with-sbcl-bin-base=$ROSWELL_SBCL_BIN_URI; make"
|
||||
- if "%METHOD%"=="cross" cd %APPVEYOR_BUILD_FOLDER%
|
||||
- if "%METHOD%"=="cross" mkdir roswell
|
||||
- if "%METHOD%"=="cross" mkdir roswell\lisp
|
||||
|
|
@ -41,7 +41,7 @@ build_script:
|
|||
- if "%METHOD%"=="cross" "C:\Program Files (x86)\HTML Help Workshop\hhc.exe" documents\roswell.hhp || copy nul nul > nul
|
||||
- if "%METHOD%"=="cross" cd %APPVEYOR_BUILD_FOLDER%
|
||||
- if "%METHOD%"=="cross" 7z a Roswell-%MSYS2_ARCH%.zip roswell/ros.exe roswell/lisp/*.* roswell/documents/roswell.chm
|
||||
- if "%METHOD%"=="ci" C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; ./bootstrap; ./configure; make; make install"
|
||||
- if "%METHOD%"=="ci" C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; ./bootstrap; ./configure --with-platformhtml-base=$ROSWELL_PLATFORMHTML_BASE --with-sbcl-bin-base=$ROSWELL_SBCL_BIN_URI; make; make install"
|
||||
|
||||
test_script:
|
||||
- if "%METHOD%"=="ci" C:\msys64\usr\bin\bash -lc "ros version"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ machine:
|
|||
test:
|
||||
post:
|
||||
- sh bootstrap
|
||||
- ./configure
|
||||
- ./configure --with-platformhtml-base=$ROSWELL_PLATFORMHTML_BASE --with-sbcl-bin-base=$ROSWELL_SBCL_BIN_URI
|
||||
- make -j4
|
||||
- sudo make install
|
||||
- ros version
|
||||
|
|
|
|||
Loading…
Reference in a new issue