1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-02-12 19:31:56 +00:00
miraclecast/.semaphore/semaphore.yml
2020-11-13 16:47:16 +01:00

35 lines
656 B
YAML

version: v1.0
name: Docker
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
global_job_config:
secrets:
- name: dockerhub
blocks:
- name: Checkout
task:
jobs:
- name: Checkout
commands:
- checkout
- name: Build
task:
jobs:
- name: Autotools
commands:
- checkout
- docker build -t autotools -f autotools.Dockerfile .
- name: Cmake
commands:
- checkout
- docker build -t cmake -f cmake.Dockerfile .
- name: meson
commands:
- checkout
- docker build -t meson -f meson.Dockerfile .