Thread overview
Help with semaphoreci issue?
Jun 06, 2018
Manu
Jun 06, 2018
Seb
Jun 07, 2018
Goran
June 05, 2018
I have 2 DMD PR's that show this issue with semaphoreci: https://semaphoreci.com/dlang/dmd-2/branches/pull-request-8336/builds/1

I don't understand what's wrong, and whether or not it's my fault... If it's not, I guess someone needs to know about it?
June 06, 2018
On Wednesday, 6 June 2018 at 06:33:08 UTC, Manu wrote:
> I have 2 DMD PR's that show this issue with semaphoreci: https://semaphoreci.com/dlang/dmd-2/branches/pull-request-8336/builds/1
>
> I don't understand what's wrong, and whether or not it's my fault... If it's not, I guess someone needs to know about it?


Seems to be something related to their recent platform upgrade.
Installing libcurl-gnutls:i386 runs into conflicts on their new 14.04 image :/
I will try to have a look into it, but for now downgrading to the older image seems to resolve the problem.
June 07, 2018
On Wednesday, 6 June 2018 at 15:15:39 UTC, Seb wrote:
> On Wednesday, 6 June 2018 at 06:33:08 UTC, Manu wrote:
>> I have 2 DMD PR's that show this issue with semaphoreci: https://semaphoreci.com/dlang/dmd-2/branches/pull-request-8336/builds/1
>>
>> I don't understand what's wrong, and whether or not it's my fault... If it's not, I guess someone needs to know about it?
>
>
> Seems to be something related to their recent platform upgrade.
> Installing libcurl-gnutls:i386 runs into conflicts on their new 14.04 image :/
> I will try to have a look into it, but for now downgrading to the older image seems to resolve the problem.

Hi guys,

Please run following command to install libcurl3-gnutls:i386 package:

---
sudo apt-get update && sudo apt-get install -y libgcc1:i386 libcurl3-gnutls:i386
---

This should install libcurl3-gnutls:i386 package without errors.

Hope this helps!