dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

appveyor.yml (576B)


      1 version: 1.0.{build}
      2 
      3 environment:
      4   matrix:
      5   - FLAVOR: mingw64
      6     APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
      7     COMPILER: msys2
      8     PLATFORM: x64
      9     MSYS2_ARCH: x86_64
     10     MSYS2_DIR: msys64
     11     MSYSTEM: MINGW64
     12     BIT: 64
     13 
     14 install:
     15   # running under CI
     16   - '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\install.bat'
     17   - 'echo End install at: & time /t'
     18 
     19 build_script:
     20   - 'pushd %APPVEYOR_BUILD_FOLDER%'
     21   - 'make autobuild -f %APPVEYOR_BUILD_FOLDER%\Makefile'
     22 
     23 after_build:
     24   - '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\pack.bat'
     25 
     26 artifacts:
     27   - path: '*.zip'
     28   - path: '*.tar'