run-setup-build.yml 323 B

123456789101112131415
  1. ---
  2. # Run setup and build code
  3. - name: Creat bash profile file
  4. command: "touch /home/ubuntu/.bash_profile"
  5. - name: Run setup script
  6. command: ./setup.sh
  7. args:
  8. chdir: "{{ remote_code_path }}"
  9. - name: Build joystream node
  10. shell: . ~/.bash_profile && yarn cargo-build
  11. args:
  12. chdir: "{{ remote_code_path }}"