# # Author: Hari Sekhon # Date: 2020-02-24 15:41:04 +0000 (Mon, 24 Feb 2020) # # vim:ts=4:sts=4:sw=4:et # # https://github.com/harisekhon/bash-tools # # License: see accompanying Hari Sekhon LICENSE file # # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish # # https://www.linkedin.com/in/harisekhon # # This references a standard debian container from the # Docker Hub https://registry.hub.docker.com/_/debian/ # Read more about containers on our dev center # https://devcenter.wercker.com/overview-and-core-concepts/containers/ box: debian # You can also use services such as databases. Read more on our dev center: # https://devcenter.wercker.com/administration/services/ # services: # - postgres # https://devcenter.wercker.com/administration/services/examples/postgresql/ # - mongo # https://devcenter.wercker.com/administration/services/examples/mongodb/ # This is the build pipeline. Pipelines are the core of wercker # Read more about pipelines on our dev center # https://devcenter.wercker.com/development/pipelines/ build: # Steps make up the actions in your pipeline # Read more about steps on our dev center: # https://devcenter.wercker.com/development/steps/ steps: - script: name: install git & make code: apt-get update && apt-get install -y git make - script: name: build code: make - script: name: test code: make test