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

azure-pipelines.yml - github.com/ClusterM/fceux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8365c84a3f11fdbba1a2416e71122b9f0b788d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc

trigger:
- master
- development

pool:
  vmImage: 'ubuntu-latest'

steps:
- script: |
    ./pipelines/linux_build.sh
  displayName: 'make'