Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Azure Pipeline #212

Merged
merged 25 commits into from
May 27, 2019
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
42f1cc0
Add Azure Pipelines
quentinlesceller May 16, 2019
a4e8aaa
Fix malformed CI
quentinlesceller May 16, 2019
8782cf8
Fix release yml
quentinlesceller May 16, 2019
6555dfe
Fix connection name
quentinlesceller May 16, 2019
a1f18c6
Fix broken yml
quentinlesceller May 16, 2019
76c67c2
Fix macOS build
quentinlesceller May 16, 2019
63e382c
Fix macos build and name of task
quentinlesceller May 16, 2019
fc0ca7b
Add submodules
quentinlesceller May 16, 2019
ff04cf1
Merge branch 'master' of git://github.com/mimblewimble/grin-miner int…
quentinlesceller May 17, 2019
38b2654
Fix windows build with cursive
quentinlesceller May 17, 2019
25509fd
Add cmake
quentinlesceller May 24, 2019
9b9b537
Merge branch 'master' into azure-pipeline
quentinlesceller May 24, 2019
48e88b8
CMake is already installed
quentinlesceller May 24, 2019
c3c73b8
Merge branch 'master' into azure-pipeline
quentinlesceller May 24, 2019
fddf24e
Merge branch 'master' into azure-pipeline
quentinlesceller May 27, 2019
237c3d8
Add linux opencl
quentinlesceller May 27, 2019
0491096
Add libnucrses
quentinlesceller May 27, 2019
97509ef
Merge branch 'master' into azure-pipeline
quentinlesceller May 27, 2019
9e13e80
Remove windows build and test only cuckoo-miner directory
quentinlesceller May 27, 2019
14051e3
Remove duplicate task
quentinlesceller May 27, 2019
898b34c
Add opencl feature for release
quentinlesceller May 27, 2019
5134d59
test --release instead of test --all
quentinlesceller May 27, 2019
15cda3b
Remove CUDA from macOS and test only on Linux
quentinlesceller May 27, 2019
3165d65
Fix for Grin repo
quentinlesceller May 27, 2019
345e56d
Fix connection name and repo name
quentinlesceller May 27, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix windows build with cursive
quentinlesceller committed May 17, 2019

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 38b265460fb1765989a4d6da8c77e7025db3d4ec
1 change: 1 addition & 0 deletions .ci/install.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ steps:
rustup-init.exe -y
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
git submodule update --init --recursive
git apply .ci/win.patch
displayName: Windows Install Rust and Dependencies
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
13 changes: 13 additions & 0 deletions .ci/win.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/Cargo.toml b/Cargo.toml
index 3f2ac2e..b65f758 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -46,8 +46,6 @@ cursive = { version = "0.12.0", default-features = false, optional = true, featu
[target.'cfg(windows)'.dependencies.pancurses]
version = "0.16.0"
features = ["win32"]
-[target.'cfg(unix)'.dependencies]
-cursive = { version = "0.12.0", optional = true }


[build-dependencies]