Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BrownBear

Pages: [1] 2 3 4
1
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: March 18, 2014, 06:40:48 pm »
That's odd... no they're from ~20h ago. I'll have to check what's up with that. You can see in the filenames it's march 18th.

EDIT: it was caused by my date formatting gone awry. Fixed it. For some reason bts_wallet didn't get uploaded recently. Seems like the path to the binary was wrong, updating now. https://github.com/InvictusInnovations/keyhotee/commit/f2095166e6270273a967186705d71898b7717e9d this caused the problem afaics.

2
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: March 18, 2014, 06:16:39 pm »
Oh just fyi, we configured our server to respond to jenkins.bitshares.org on port 80 with the jenkins page, so changing the dns setting would already work from our side, since that's what we anticipated. I also added a link to the ptsags website that links to jenkins while this is being fixed, as well as a binaries page that gives you quick access to the most recent binaries:
http://178.63.85.22/binaries/

3
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: March 18, 2014, 06:08:09 pm »
Right now jenkins.bitshares.org loads a page on your server with an iframe inside that loads http://178.63.85.22/

This is a bad way to achieve this. It would be better to let DNS requests to jenkins.bitshares.org be responded by 178.63.85.22 instead of 192.31.186.16.

If you want to stay at the current way of doing it with an iframe, then you have to point the iframe to http://178.63.85.22:8080/ instead of http://178.63.85.22/
Loading http://jenkins.bitshares.org:8080 will try to connect to your server at 192.31.186.16, which won't work.

4
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: March 17, 2014, 09:28:13 am »
Please route using dns. If thats not possible route to port 8080

5
the countdown stopped working all together now.

6
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: March 10, 2014, 12:00:08 am »
Keyhotee is currently failing to build due to a missing file:
AddressBook/ContactGui.hpp

7
Can't pull request this since it's in a subpage, but the countdown on the page wraps around to 99 instead 59.

Here's a patch applicable to jquery.countdown.js to fix it:
Code: [Select]
15,16c15,16
<     format: "dd:hh:mm:ss",
<     startTime: "01:12:32:55",
---
>     format: "ddd:hh:mm:ss",
>     startTime: "001:12:32:55",
28a29
>     var lastFormat = "";
48c49
<             digits[c].__max = (c % 2 == 0) ? 2: 9;
---
>             digits[c].__max = (lastFormat != 'h') ? 2 : 9;
57c58
<             digits[c].__max = (c % 2 == 0) ? 5: 9;
---
>             digits[c].__max = (lastFormat != 's') ? 5 : 9;
58a60
>         lastFormat = options.format[i];

8
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: March 05, 2014, 08:53:51 pm »
Windows build are working as well now. We just have to tie it all together now and make it look nice.

9
300 PTS and 400 BTS is fine thanks.

10
I can see the payment to batmaninpink, but not the one to me for the armory wallet.

11
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: February 28, 2014, 03:09:27 pm »
Update:
cross-compilation with i686-w64-mingw32 worked after a few patches to the different projects. Linkage failed with loads of reference and duplicate section issues but with some mingeling works. The resulting .exe files failed to exectue on a windows 7 system so far tho. Reason unknown.
We're trying to compile with i586-ming32msvc instead.

Darwin/OSX builds run natively on second server. DreKrob can give more details about that.

12
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: February 22, 2014, 11:19:10 am »
We're successfully building Keyhotee, BitShares, fc, BitShares-PTS, bts_server, bts_wallet and all other sub-projects of BitShares for linux.
We're working on cross-compiling with i686-w64-mingw32 right now.

13
Not yet claimed... but I believe two people have completed this bounty and we will be reviewing it in the next day or so for completion so we can pay out before the 28th.

better.... and get it ready by 28th

better and get it ready by tomorrow

@bytemaster:
I think pc also completed it by now, so it's three people already.

14
I just noticed that you wanted to parse the data in uint64_t, would you prefer satoshi amounts instead of PTS/AGS/BTC amounts (aka int vs. float)? I can swap it easily.

15
Marketplace / Re: 2000 PTS - Jenkins Automated Nightly Build Server
« on: February 20, 2014, 02:24:02 pm »
Can we please merge this into BitShares?
try this:
Code: [Select]
diff Bitshares/CMakeLists.txt

--target_link_libraries(bshare fc upnpc-static leveldb ${BDB_LIBRARIES} ${ZLIB_LIBRARIES})
++target_link_libraries(bshare fc upnpc-static leveldb ${BDB_LIBRARIES} ${ZLIB_LIBRARIES}  ${CMAKE_DL_LIBS})

Otherwise jenkins gets loads of undefined reference errors.

Pages: [1] 2 3 4