Skip to content
This repository was archived by the owner on Jan 12, 2025. It is now read-only.

Commit fd9ae08

Browse files
add circleci
1 parent 12c8763 commit fd9ae08

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

.circleci/config.yml

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
version: 2.1
2+
23
jobs: # a basic unit of work in a run
34
build:
45
macos:
56
xcode: 14.2.0 # indicate your selected version of Xcode
6-
steps:
7-
- checkout
8-
- run:
9-
name: build
10-
command: |
11-
pushd resources/pictures/docicons/osx
12-
wget https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/docerator/docerator-2.0.zip
13-
unzip docerator-2.0.zip -d docerator
14-
rm docerator-2.0.zip
15-
"/usr/bin/python genicons.py"
16-
popd
17-
mkdir build
18-
pushd build
19-
cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 ..
20-
cmake --build .
21-
cpack
22-
popd
23-
- store_artifacts: # store this build output. Read more: https://circleci.com/docs/2.0/artifacts/
24-
path: app.zip
25-
destination: app
7+
steps:
8+
- checkout
9+
- run:
10+
name: build
11+
command: |
12+
pushd resources/pictures/docicons/osx
13+
wget https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/docerator/docerator-2.0.zip
14+
unzip docerator-2.0.zip -d docerator
15+
rm docerator-2.0.zip
16+
"/usr/bin/python genicons.py"
17+
popd
18+
mkdir build
19+
pushd build
20+
cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 ..
21+
cmake --build .
22+
cpack
23+
popd
24+
- store_artifacts: # store this build output. Read more: https://circleci.com/docs/2.0/artifacts/
25+
path: app.zip
26+
destination: app
2627

2728
workflows:
28-
test_build:
29+
build:
2930
jobs:
3031
- build:

0 commit comments

Comments
 (0)