Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.

Commit 888fdec

Browse files
committed
CI: Store cpp-ethereum package
1 parent 4953524 commit 888fdec

File tree

3 files changed

+11
-64
lines changed

3 files changed

+11
-64
lines changed

appveyor.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,14 @@ before_build: |
5050
if not exist build mkdir build
5151
cd build
5252
cmake -G "Visual Studio 14 2015 Win64" .. -DTESTS=%TESTS% -DEVMJIT=OFF
53-
build_script:
54-
- msbuild cpp-ethereum.sln /p:Configuration=%CONFIGURATION% /m:%NUMBER_OF_PROCESSORS% /v:minimal
55-
- cd %APPVEYOR_BUILD_FOLDER%
56-
- scripts\release.bat %CONFIGURATION% %ETHEREUM_DEPS_PATH% %TESTS%
53+
build_script: |
54+
cmake --build . --config %CONFIGURATION% --target package
5755
test_script:
5856
- cd %APPVEYOR_BUILD_FOLDER%
5957
- scripts\tests.bat %TESTS% %CONFIGURATION% %APPVEYOR_BUILD_FOLDER% %ETHEREUM_DEPS_PATH%
6058
artifacts:
61-
- path: cpp-ethereum-windows.zip
62-
name: cpp-ethereum-windows-zip
59+
- path: build\cpp-ethereum.zip
60+
name: cpp-ethereum-windows.zip
6361

6462
# This is the deploy target for Windows which generates ZIPs per commit.
6563
# We are in agreement that generating ZIPs per commit for the develop
@@ -79,14 +77,6 @@ deploy:
7977
provider: GitHub
8078
auth_token:
8179
secure: yukM9mHUbzuZSS5WSBLKSW0yGJerJEqAXkFhDhSHBBcKJE7GAryjQsdO9Kxh3yRv
82-
artifact: cpp-ethereum-windows-zip
80+
artifact: cpp-ethereum-windows.zip
8381
on:
8482
branch: release
85-
86-
# Disable slightly annoying AppVeyorBot. The comments it adds onto Github issues are
87-
# redundant with the "Checks Passed/Failure" detail which is already on the issues.
88-
notifications:
89-
- provider: GitHubPullRequest
90-
on_build_success: false
91-
on_build_failure: false
92-
on_build_status_changed: false

circle.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ defaults:
2727
run:
2828
name: "Build"
2929
working_directory: ~/build
30-
command: cmake --build . -- -j $BUILD_PARALLEL_JOBS
30+
command: cmake --build . --target package -- -j $BUILD_PARALLEL_JOBS
3131

3232
test: &test
3333
run:
@@ -47,15 +47,10 @@ defaults:
4747
4848
ctest --output-on-failure -j $TEST_PARALLEL_JOBS
4949
50-
store-eth: &store-eth
50+
store-package: &store-package
5151
store_artifacts:
52-
path: ~/build/eth/eth
53-
destination: eth
54-
55-
store-testeth: &store-testeth
56-
store_artifacts:
57-
path: ~/build/test/testeth
58-
destination: testeth
52+
path: ~/build/cpp-ethereum.tar.gz
53+
destination: cpp-ethereum.tar.gz
5954

6055
store-randomcode-seed: &store-randomcode-seed
6156
store_artifacts:
@@ -102,8 +97,7 @@ defaults:
10297
- *configure
10398
- *build
10499
- *save-deps-cache
105-
- *store-eth
106-
- *store-testeth
100+
- *store-package
107101
- *restore-ethash-dag
108102
- *test
109103
- run:
@@ -170,8 +164,7 @@ jobs:
170164
- *configure
171165
- *build
172166
- *save-deps-cache
173-
- *store-eth
174-
- *store-testeth
167+
- *store-package
175168
- *restore-ethash-dag
176169
- *test
177170
- *store-randomcode-seed

scripts/release.bat

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)