Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
Issue #20 Add circleci to store build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
anjannath committed Jun 1, 2020
1 parent 09cbe83 commit 63cd1bd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## Circleci version
version: 2.0

## Machine specific variable
jobs:
build:
macos:
xcode: 11.4.1

## Build crc
steps:
- checkout
- run:
name: Build project
command: ./build.sh
- run:
name: create tar ball of the app
command: tar -czf crc-tray-macos.tar.gz ./out/CodeReady\ Containers.app
- store_artifacts:
path: ~/project/crc-tray-macos.tar.gz
destination: crc-tray-macos.tar.gz


workflows:
version: 2
build:
jobs:
- build

0 comments on commit 63cd1bd

Please sign in to comment.