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
0
votes
1 answer

How to fix "psql: error: xxx and accepting connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?"

How to fix this error? psql: error: could not connect to server: No such file or directory Is the server running locally and accepting connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"? We use Docker, Postgres12, Wercker. When…
guitar-man
  • 13
  • 4
0
votes
1 answer

Chained pipeline (default execute) in wercker dont produce results

I have following pipeline in wercker. They are exactly same for reproducing issue purpose. setup: steps: - script: name: set yarn cache code: yarn config set cache-folder $WERCKER_CACHE_DIR/yarn - script: name: install…
Aldarund
  • 17,312
  • 5
  • 73
  • 104
0
votes
1 answer

Building a container with only tests with Wercker

I build a maven project that contains only tests. These tests test a REST service running in a container on my machine. The tests run successfully on my machine with mvn test. Now I want to build a container for my test project using Wercker. In…
EdH
  • 5
  • 4
0
votes
0 answers

how to use Error: transliterator_transliterate() with phpunit on wercker?

I'm using box: php:7.1-fpm in wercker In my code I'm using function transliterator_transliterate() It works locally and on the server, however when running tests in wercker it is displaying error Error: Call to undefined function…
plusz
  • 224
  • 2
  • 16
0
votes
1 answer

Wercker Firebase Deployment issue

I am trying automate Deployment to Firebase Hosting via Wercker and I am continously getting this error. Following this tutorial https://medium.com/@pradeep1991singh/integrate-wercker-with-bitbucket-firebase-and-slack-7eb3bc38543d Stack Trace >…
0
votes
1 answer

Wercker builds failing "could not read from remote repository"

As of last week, all builds for Wercker are failing due to an error when Wercker attempts to clone in to the Github repository. Cloning into 'xxxx'... Host key verification failed. fatal: Could not read from remote repository. I've renewed the…
TomSanders
  • 13
  • 3
0
votes
1 answer

Permission denied error while executing wercker.yml

A sample github repository is linked to app.wercker.com as given in the dochttp://devcenter.wercker.com/docs/quickstarts/deployment/kubernetes while executing the build from wercker.yml (through app.wercker.com), below error is seen. Permission…
0
votes
1 answer

How to pass command line options to node?

I need to increase the heap size limit with --max_old_space_size=6144, but I'm not sure how to pass flags to node in Wercker. my wercker.yml is box: node:6.9.1 build: steps: - npm-install@1.1.4 - script: name: package …
Jay
  • 9,314
  • 7
  • 33
  • 40
0
votes
1 answer

Wercker ignore error from ssh

I'm trying to automate deployment of a node-app. I'm using forever to run the app. But before deploying the next version I need to quit the current process. I'm using forever stop /path/ but sometimes the process is not running. That will return a…
Dirk
  • 155
  • 1
  • 2
  • 13
0
votes
1 answer

Wercker CI Advanced Webhooks (with multiple GH repos)

I have two Github repos, one for a Github Pages website with the master branch containing the static site generator source for the website, and another repo containing a Git submodule referenced by the master branch of the website repo. Ideally I…
neutreno
  • 694
  • 1
  • 5
  • 10
0
votes
1 answer

Micro-components architecture with python / Django / Drf

I have several applications in my Django project: - ticker - payments - crypto - referrals - core I am using Docker wrapped by Wercker (quite limiting I would say, but saves time). My question is, how to deploy each application as a standalone…
Oleg Belousov
  • 9,981
  • 14
  • 72
  • 127
0
votes
1 answer

wercker internal/docker-push fails

Using the following (excerpt from) the wercker file: - internal/docker-push: tag: pp2-ui username: $DOCKER_HUB_USERNAME password: $DOCKER_HUB_PASSWORD repository: rudivd/test ports: 8081 cmd: nginx -g 'daemon off;' …
Rudi
  • 121
  • 1
  • 7
0
votes
1 answer

Wercker S3sync not working

Has anyone been able to successfully deploy code using Wercker S3Sync? I'm finding that most of the documentation that exists is for the old version of Wercker and the new version seems to work differently. Specifically, it appears there was a…
Jeff
  • 31
  • 3
0
votes
1 answer

Start wercker job hourly

I've just started using wercker and I'd like a job to run regularly (e.g. daily, hourly). I realize this may be an anti-pattern, but is it possible? My intent is not to keep the container running indefinitely, just that my workflow is executed on a…
blong
  • 2,815
  • 8
  • 44
  • 110
0
votes
1 answer

Using a docker image on Wercker

I am trying to use Wercker to eventually convert libreoffice files to pdf stored in a private Github repo. There are some Docker images on Dockerhub that contain libreoffice such as xcgd/libreoffice which has this dockerfile. I am new to both Docker…