mirror of
https://github.com/kemko/xc.git
synced 2026-01-01 15:55:43 +03:00
14 lines
295 B
YAML
14 lines
295 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: viert/buildmachine-centos-x86_64:7
|
|
working_directory: /tmp/build
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Building XC
|
|
command: go build -o xc cmd/xc/main.go
|
|
- store_artifacts:
|
|
path: /tmp/build/xc
|