7 Apr 2021 |
djaffer (Danish J.) | It is not doing it in my case can you please tell what you find incorrect. It is only doing when it is merged. Is this not enabled by default. @bradrydzewski | 21:42:20 |
djaffer (Danish J.) | kind: pipeline
name: production deployment
steps:
- name: setup/install
image: node:14.16.0
commands:
- yarn install --silent
- name: build
image: node:14.16.0
commands:
- cd app
- rm -rf build
- yarn run build
- ls build
trigger:
branch:
- master | 21:43:35 |
djaffer (Danish J.) | * kind: pipeline
name: production deployment
steps:
- name: setup/install
image: node:14.16.0
commands:
- yarn install --silent
- name: build
image: node:14.16.0
commands:
- cd app
- rm -rf build
- yarn run build
- ls build
trigger:
branch:
- master | 21:43:50 |
djaffer (Danish J.) | * It is not doing it in my case can you please tell what you find incorrect. It is only doing when it is merged. Is this not enabled by default. @bradrydzewski | 21:44:38 |
8 Apr 2021 |
alex-fomin (Alex Fomin) | Hi, is it possible to use CCMenu for drone with Bitbucket authorization? | 10:27:50 |
| Unknown Fllooo joined the room. | 14:22:48 |
Unknown Fllooo | Hey | 14:22:54 |
| quelqun changed their profile picture. | 15:37:30 |
| smokieg (smokieg) joined the room. | 22:03:41 |
smokieg (smokieg) | is it possible to run shell scripts via commands in a step (docker pipeline)? everything i've tried fails with no error | 22:03:42 |
9 Apr 2021 |
| timorantalaiho (Timo Rantalaiho) joined the room. | 13:38:38 |
timorantalaiho (Timo Rantalaiho) | Hello! We have an involved build that has greatly benefited from being converted from yaml to jsonnet. | 13:38:38 |
timorantalaiho (Timo Rantalaiho) | However our .drone.jsonnet has grown rather large and complex too :) | 13:38:54 |
timorantalaiho (Timo Rantalaiho) | So I started splitting it to several files, testing happily the results with drone jsonnet --stream locally | 13:39:16 |
timorantalaiho (Timo Rantalaiho) | and then pushed to our self-hosted Drone server, just to find out it didn't find my imports at all :) | 13:39:42 |
timorantalaiho (Timo Rantalaiho) | Is there any hope in getting the imports work in Drone? So far I have only found this one third party plugin that seems rather old and not maintained https://discourse.drone.io/t/can-you-import-your-own-jsonnet-libraries/7741 | 13:40:18 |
bradrydzewski (Brad Rydzewski) | jsonnet imports are not supported natively by the Drone server. You can use the jsonnet plugin (mentioned at https://discourse.drone.io/t/can-you-import-your-own-jsonnet-libraries/7741) ... it is no longer being actively developed, but it still works just fine, and you always have the option to fork and modify as needed. | 17:43:48 |
| dhoffmann joined the room. | 20:00:34 |
dhoffmann | Hello - I have an urgent licensing issue - is there someone I can get into contact with directly? | 20:01:09 |
| drGrove (Daniel Grove) joined the room. | 20:09:35 |
drGrove (Daniel Grove) | Yes, are they set as executable? | 20:09:35 |
drGrove (Daniel Grove) | @bradrydzewski, we could really use some help on this | 20:12:30 |
dhoffmann | We were able to get our issue resolved with support. Thanks! | 20:38:06 |
Halfwalker (Halfwalker) | I have gitea and drone running in docker containers on a test box. Just rebooted box, it pulled latest docker images, and logging into drone now gives | 21:45:42 |
Halfwalker (Halfwalker) | Post "http://test2.local:3000/login/oauth/access_token": dial tcp: lookup test2.local on 8.8.8.8:53: no such host Any ideas ? Why is it querying 8.8.8.8 ? My /etc/resolv.conf has nameserver 127.0.0.53 (It's Ubuntu 18.04 with systemd-resolve) | 21:47:06 |
techknowlogick | docker injects custom dns config into containers, you'll need to configure your docker daemon to change that, however 127.0.0.53 would'nt work inside docker containers since localhost means something else. | 21:48:38 |
Halfwalker (Halfwalker) | OK, I take it all back. Just restarted the drone container, and now it's OK | 21:49:15 |
10 Apr 2021 |
timorantalaiho (Timo Rantalaiho) | OK, thankyou for the confirmation! | 03:47:49 |
| Michael Amoani changed their profile picture. | 12:46:40 |
11 Apr 2021 |
Halfwalker (Halfwalker) | To complete this - the gitea container has its /etc/resolv.conf pointing to 8.8.8.8, not the actual DNS server handed out by dhcp. Not sure why, but a restart of the containers had them get the proper nameserver line, and it all worked again. | 00:23:14 |