Maybe last fix for the CI

This commit is contained in:
Alexandre Iooss 2019-03-12 16:56:01 +01:00
parent cc48990798
commit 431b063db7
2 changed files with 9 additions and 3 deletions

View file

@ -25,9 +25,9 @@
# Installation script bin/installDeps.sh (2) # Installation script bin/installDeps.sh (2)
- name: Create symbolic link to EtherPad src - name: Create symbolic link to EtherPad src
file: file:
src: /var/local/etherpad/etherpad-lite/src src: /var/local/etherpad/etherpad-lite/src
dest: /var/local/etherpad/etherpad-lite/node_modules/ep_etherpad-lite dest: /var/local/etherpad/etherpad-lite/node_modules/ep_etherpad-lite
state: link state: link
become: true become: true
become_user: etherpad become_user: etherpad
@ -38,6 +38,9 @@
path: /var/local/etherpad/etherpad-lite/node_modules/ep_etherpad-lite path: /var/local/etherpad/etherpad-lite/node_modules/ep_etherpad-lite
become: true become: true
become_user: etherpad become_user: etherpad
register: npm_result
retries: 3
until: npm_result is succeeded
# Configuration # Configuration
- name: Configure EtherPad - name: Configure EtherPad

View file

@ -21,6 +21,9 @@
path: /var/local/matrix-appservice-discord/matrix-appservice-discord path: /var/local/matrix-appservice-discord/matrix-appservice-discord
become: true become: true
become_user: matrix-appservice-discord become_user: matrix-appservice-discord
register: npm_result
retries: 3
until: npm_result is succeeded
# Typescript into javascript # Typescript into javascript
- name: Compile matrix-appservice-discord - name: Compile matrix-appservice-discord