Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
# iOS CircleCI 2.0 configuration file
|
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
macos:
|
2018-07-05 05:53:46 +00:00
|
|
|
xcode: "9.4.0"
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
|
|
|
|
- run:
|
|
|
|
name: Set timezone and check current datetime
|
|
|
|
command: |
|
|
|
|
sudo systemsetup -settimezone Europe/Warsaw
|
|
|
|
echo "Today is $(date +"%Y-%m-%d %T")"
|
|
|
|
|
2018-04-09 06:59:19 +00:00
|
|
|
# - restore_cache:
|
|
|
|
# name: Restore Yarn Package Cache
|
|
|
|
# keys:
|
|
|
|
# - dependency-cache-{{ checksum "yarn.lock" }}
|
|
|
|
# - dependency-cache-
|
2018-03-29 13:01:32 +00:00
|
|
|
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
- run:
|
|
|
|
name: Install project
|
|
|
|
# there is an issue with yarn and cache during executed on CI; for now we just run it twice, second should
|
|
|
|
# be successful. Check it later if updates fixed the issue
|
|
|
|
command: |
|
|
|
|
yarn || true
|
|
|
|
yarn || true
|
|
|
|
|
2018-04-09 06:59:19 +00:00
|
|
|
# - save_cache:
|
|
|
|
# name: Save Yarn Package Cache
|
|
|
|
# key: dependency-cache-{{ checksum "yarn.lock" }}
|
|
|
|
# paths:
|
|
|
|
# - ./node_modules
|
2018-03-29 13:01:32 +00:00
|
|
|
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
- run:
|
|
|
|
name: Building WebUI for distribution
|
|
|
|
command: |
|
|
|
|
yarn buildforelectron
|
|
|
|
|
|
|
|
- run:
|
|
|
|
name: Building gns3server
|
|
|
|
command: |
|
2018-07-05 05:53:46 +00:00
|
|
|
python -V
|
|
|
|
pip install -r scripts/requirements.txt
|
|
|
|
python scripts/build.py download
|
|
|
|
python scripts/build.py build_exe -b dist/exe.gns3server -s
|
|
|
|
python scripts/build.py validate -b dist
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
|
|
|
|
- run:
|
|
|
|
name: Dist project
|
|
|
|
command: |
|
|
|
|
yarn electron-builder --mac --x64
|
|
|
|
|
|
|
|
- run:
|
|
|
|
name: Gather artifacts
|
|
|
|
command: |
|
|
|
|
mkdir artifacts
|
|
|
|
cp build/*.dmg artifacts/
|
|
|
|
|
|
|
|
- store_artifacts:
|
|
|
|
path: artifacts
|
|
|
|
destination: artifacts
|
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build_and_deploy:
|
|
|
|
jobs:
|
|
|
|
- build:
|
|
|
|
filters:
|
|
|
|
tags:
|
|
|
|
only: /v.*/
|
|
|
|
|