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: 918b5583ee390b38f955b1cb211d988b705d6adf (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
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: pipelines/win32_build.bat

  -
    matrix:
      only:
        - job_name: Windows 64

    build_script:
    - cmd: pipelines/win64_build.bat

  -
    matrix:
      only:
        - job_name: Win64 Qt

    build_script:
    - cmd: pipelines/qwin64_build.bat

  -
    matrix:
      only:
        - job_name: Ubuntu

    build_script:
    - sh: ./pipelines/linux_build.sh

  -
    matrix:
      only:
        - job_name: MacOS

    build_script:
    - sh: ./pipelines/macOS_build.sh