Questions tagged [wercker]

Wercker is a continuous delivery platform that helps developers reduce risk and eliminate waste by testing and deploying their code often. Wercker is hosted in the cloud, so there is no need to download any software or buy hardware in order to set up a continuous delivery pipeline.

87 questions
3
votes
1 answer

Wercker: Build failing on 'set up environment'. Why?

I have a Jekyll blog which I'm trying to push to an AWS S3 bucket. I have followed this tutorial. The build keeps failing. Wercker gives me the following error message: Build failed on master setup environment GET…
user3574603
  • 3,364
  • 3
  • 24
  • 59
3
votes
3 answers

deploying nodejs app to Azure via FTP does not work

I am trying out Azure with Node and using Wercker CI to build then deploy to Azure via FTP. But it seems like I am having some trouble getting this to work. I am copying a server.js file along with a package.json and some other assets. But it looks…
Roland
  • 9,321
  • 17
  • 79
  • 135
3
votes
2 answers

How to get wercker environment vars from php?

I'm currently writing unit tests for an API written in PHP. This API implements a RateLimiting step before each request, and I want to avoid this step while I'm testing the application. Now, if I want to run the tests locally I just have to check…
Enric Florit
  • 131
  • 4
3
votes
2 answers

How do I deploy a Go application to Heroku with main package in subdirectory?

I am currently trying to deploy a Go application to Heroku using wercker. Heroku expects the main.go to be at the repository root directory but if possible I would like my repository directory to look something like this. project/ cmd/ …
Marcus
  • 153
  • 2
  • 12
2
votes
1 answer

Wercker: How to build constantly few times a day?

Right now wercker builds a build when changes were made to git repo. How do I set up wercker so it builds for example every 12 or 8 hours every day ?
Newcomer
  • 483
  • 6
  • 17
2
votes
1 answer

401 with Wercker internal/docker-push to dockerhub

The relevant (I think) part of my wercker.yml is: deploy: steps: - internal/docker-push: username: $USERNAME password: $PASSWORD entrypoint: /pipeline/source/pipeline tag: latest repository: colezlaw/pipeline …
Colselaw
  • 1,069
  • 9
  • 21
2
votes
1 answer

How to tune store step on Wercker

When I run build on Wercker it is failed because I get error at store step: Size exceeds maximum size of 1000MB How can I disable store step or increase store size ? This is part of wercker.yml: box: java build: steps: - script: …
Roman Cherepanov
  • 1,639
  • 2
  • 24
  • 44
2
votes
1 answer

Wercker setup environment step error: Guest command failed with exit code -1: mkdir -p "/pipeline"

I'm using wercker to do ci with my android application, which makes use of rxwen/android docker image. But wercker always report the error message below in setup environment step. Guest command failed with exit code -1: mkdir -p "/pipeline" The…
Raymond
  • 744
  • 5
  • 12
2
votes
1 answer

Build only git tags in wercker

Is it possible to limit a pipelines to tagged commits similar to gitlab-ci "only: [tags]"? The UI only allows the options "Chain Pipeline" or to start it on git push.
Igor Lankin
  • 1,416
  • 2
  • 14
  • 30
2
votes
0 answers

Dependencies cache in Wercker

I'm using Wercker on my Ruby on Rails project. My wercker.yml looks like this: box: ruby services: - postgres build: steps: - script: name: Nokogiri fix code: bundle config build.nokogiri --use-system-libraries …
Mateusz Urbański
  • 7,352
  • 15
  • 68
  • 133
2
votes
2 answers

Testing meteor js/mocha with wercker pipeline hangs

I've got an app I can test locally without issue using meteor test-packages --velocity // result [[[[[ Tests ]]]]] => Started proxy. => Started MongoDB. =>…
Petrov
  • 4,200
  • 6
  • 40
  • 61
2
votes
4 answers

Deploy to IBM Containers without cf/ice CLI

I currently have a workflow that goes like this: Bitbucket -> Wercker. Wercker correctly builds my app, but when it comes to deploying I am lost. I am attempting to deploy to my IBM Containers registry on Bluemix (recently out of beta). Running…
2
votes
2 answers

Wercker test fails to open tempfiles

In my code I have the following block Tempfile.open([model.id.to_s, '.txt'], Rails.root.join('tmp')) do |file| begin file << somedata_i_have_before model.file = file # using paperclip gem attached file ensure # close and delete file …
a14m
  • 7,808
  • 8
  • 50
  • 67
2
votes
2 answers

Deploying a repository on an OpenShift node.js server

I'm using the Wercker Continuous Integration & Delivery Platform to test and deploy a BitBucket repository on a node.js OpenShift server. Wercker loads in the BitBucket repository, builds it, tests it in the node.js environment, and passes it…
shmuli
  • 5,086
  • 4
  • 32
  • 64
1
vote
0 answers

Wercker's internal/docker-build fails with context property

I have a project, where I intend to build and publish more than one Docker images with wercker. The source code for each of these are in their separate folders inside the project. To serve as a simpler example I have created a repository, where you…
handris
  • 1,999
  • 8
  • 27
  • 41