Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appveyor.yml - github.com/ClusterM/fceux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 300fad9842a4341135f1971b77135858075b8474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
version: 1.0.{build}

environment:
  matrix:

  - job_name: Windows 32
    appveyor_build_worker_image: Visual Studio 2019

  - job_name: Windows 64
    appveyor_build_worker_image: Visual Studio 2019

  - job_name: Win64 Qt
    appveyor_build_worker_image: Visual Studio 2019

  - job_name: Ubuntu
    appveyor_build_worker_image: Ubuntu2004
    #appveyor_build_worker_image: Ubuntu1804

  - job_name: MacOS
    appveyor_build_worker_image: macOS

for:

  -
    matrix:
      only:
        - job_name: Windows 32

    build_script:
    - cmd: perl pipelines/build.pl win32

  -
    matrix:
      only:
        - job_name: Windows 64

    build_script:
    - cmd: perl pipelines/build.pl win64

  -
    matrix:
      only:
        - job_name: Win64 Qt

    build_script:
    - cmd: perl pipelines/build.pl win64-QtSDL

  -
    matrix:
      only:
        - job_name: Ubuntu

    build_script:
    - sh: perl pipelines/build.pl linux

  -
    matrix:
      only:
        - job_name: MacOS

    build_script:
    - sh: perl pipelines/build.pl macOS

deploy:

  - provider: GitHub
    tag: interim-build
    release: interim-build
    description: 'Interim Builds - Latest auto builds off master branch - commit: $(APPVEYOR_REPO_COMMIT)\nDate: $(APPVEYOR_REPO_COMMIT_TIMESTAMP)'
    auth_token:
      secure: pYXqhuxNn7vivsJ6cnWCHlORrTtaWO7fyGOvGFUNKtM2apSY44gjbAhGIlD+OdtF
    artifact: $(WIN32_ARTIFACT), $(WIN64_ARTIFACT), $(WIN64_QTSDL_ARTIFACT), $(MACOS_ARTIFACT), $(LINUX_ARTIFACT)
    draft: false
    prerelease: true
    force_update: true
    on:
      branch: master                 # release from master branch only
      APPVEYOR_REPO_TAG: false       # never deploy on tag push

  - provider: GitHub
    description: 'Release Builds - commit: $(APPVEYOR_REPO_COMMIT)'
    auth_token:
      secure: pYXqhuxNn7vivsJ6cnWCHlORrTtaWO7fyGOvGFUNKtM2apSY44gjbAhGIlD+OdtF
    artifact: $(WIN32_ARTIFACT), $(WIN64_ARTIFACT), $(WIN64_QTSDL_ARTIFACT), $(MACOS_ARTIFACT)
    draft: false
    prerelease: false
    force_update: false
    on:
      APPVEYOR_REPO_TAG: true       # deploy on tag push only