mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Tested on ci. See https://github.com/PyCQA/flake8-import-order . In the process did some other cleanups and https://en.wikipedia.org/wiki/Code_refactoring .
68 lines
3 KiB
YAML
68 lines
3 KiB
YAML
---
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:\\PYTHON34"
|
|
# Shamelessly taken from https://github.com/plicease/Dist-Zilla-PluginBundle-Author-Plicease/blob/master/.appveyor.yml
|
|
# Thanks!
|
|
install:
|
|
- choco install strawberryperl
|
|
- copy %PYTHON%\python.exe %PYTHON%\python3.exe
|
|
- SET PATH=%PYTHON%;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
|
|
- python3 -mpip install Pillow
|
|
- python3 -mpip install flake8
|
|
- python3 -mpip install flake8-import-order
|
|
- python3 -mpip install py2exe
|
|
- python3 -mpip install pycotap
|
|
- python3 -mpip install pygame
|
|
- python3 -mpip install random2
|
|
- python3 -mpip install six
|
|
- perl -v
|
|
- copy C:\msys64\mingw64\bin\mingw32-make.exe C:\msys64\mingw64\bin\make.exe
|
|
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
|
|
- SET PERL5LIB=C:/_P5/lib/perl5
|
|
- SET PERL_LOCAL_LIB_ROOT=C:/_P5
|
|
- SET PERL_MB_OPT=--install_base C:/_P5
|
|
- SET PERL_MM_OPT=INSTALL_BASE=C:/_P5
|
|
- perl -v
|
|
- cpanm --notest Code::TidyAll::Plugin::Flake8 File::Find::Object Perl::Tidy Task::FreecellSolver::Testing Test::Code::TidyAll Test::TrailingSpace
|
|
- echo %PATH%
|
|
build: off
|
|
test_script:
|
|
- set CMAKE_MAKE_PROGRAM=C:\strawberry\c\bin\gmake.exe
|
|
- set HARNESS_BREAK=1
|
|
- set HARNESS_VERBOSE=1
|
|
- set FCS_USE_TEST_RUN=1
|
|
- gmake pretest
|
|
- perl run-tests.pl
|
|
- gmake rules
|
|
- gmake pot
|
|
- gmake mo
|
|
- python3 setup.py py2exe
|
|
- appveyor DownloadFile https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/PySolFC-Cardsets-2.0/PySolFC-Cardsets-2.0.tar.bz2/download -FileName cardsets.tar.bz2
|
|
- tar xf cardsets.tar.bz2
|
|
- xargs -ta scripts\cardsets_to_bundle -I file cp -rt dist\data\ PySolFC-Cardsets-2.0\file
|
|
- appveyor DownloadFile https://sourceforge.net/projects/pysolfc/files/PySol-Music/PySol-Music-4.50/pysol-music-4.50.tar.xz/download -FileName music.tar.xz
|
|
- 7z x music.tar.xz -so | 7z x -si -ttar
|
|
- move pysol-music-4.50\data\music dist\data\music
|
|
- ps: |
|
|
$apiUrl = 'https://ci.appveyor.com/api'
|
|
$project = Invoke-RestMethod -Method Get -Uri "$apiUrl/projects/shlomif/fc-solve"
|
|
$jobId = $project.build.jobs[0].jobId
|
|
Invoke-RestMethod -Method Get -Uri "$apiUrl/buildjobs/$jobId/artifacts/fc-solve/pkg-build/fc-solve-for-pysol.zip" -OutFile fc-solve.zip
|
|
- 7z x fc-solve.zip
|
|
- move fcs-pysol dist\freecell-solver
|
|
- 7z a -r pysol_win_dist.7z dist\
|
|
- SET PYTHONPATH=%cd%
|
|
- python3 scripts\create_iss.py
|
|
- appveyor DownloadFile https://download.microsoft.com/download/C/6/D/C6D0FD4E-9E53-4897-9B91-836EBA2AACD3/vcredist_x86.exe -FileName vcredist_x86.exe
|
|
- SET PATH=%PATH%;"C:\\Program Files (x86)\\Inno Setup 5"
|
|
- ISCC /Q setup.iss
|
|
artifacts:
|
|
- path: pysol_win_dist.7z
|
|
name: pysol_win_dist
|
|
- path: dist\PySolFC_*_setup.exe
|
|
name: pysol_win_installer
|
|
cache:
|
|
- C:\_P5 -> .appveyor.yml
|
|
- C:\strawberry -> .appveyor.yml
|
|
shallow_clone: true
|