This repository was archived by the owner on Jan 12, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +23
-24
lines changed Expand file tree Collapse file tree 1 file changed +23
-24
lines changed Original file line number Diff line number Diff line change 1
1
jobs : # a basic unit of work in a run
2
-
3
- build :
4
- macos :
5
- 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
2
+ build :
3
+ macos :
4
+ xcode : 14.2.0 # indicate your selected version of Xcode
5
+ steps :
6
+ - checkout
7
+ - run :
8
+ name : build
9
+ command : |
10
+ pushd resources/pictures/docicons/osx
11
+ wget https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/docerator/docerator-2.0.zip
12
+ unzip docerator-2.0.zip -d docerator
13
+ rm docerator-2.0.zip
14
+ "/usr/bin/python genicons.py"
15
+ popd
16
+ mkdir build
17
+ pushd build
18
+ cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 ..
19
+ cmake --build .
20
+ cpack
21
+ popd
22
+ - store_artifacts : # store this build output. Read more: https://circleci.com/docs/2.0/artifacts/
23
+ path : app.zip
24
+ destination : app
26
25
27
26
workflows :
28
27
test_build :
You can’t perform that action at this time.
0 commit comments