Skip to main content
New Participant
July 19, 2021
Question

CICD Pipeline for ColdFusion Apps

  • July 19, 2021
  • 1 reply
  • 722 views

Could anybody provide a example YAML script that demonstrates how to take updated code and deliver it to a remote test server?  I'm having trouble wrapping my head around what to deliver after a merge request.  I'm completely new to GitLab and the whole CICD pipeline process, and the examples I'm seeing are for mostly builds of other languages.

 

My process is as follows

  pull from develop

  edit code

  unit test with dev server

  commit changes

  push changes

  UAT

  merge request

 

Thanks for any clarification you can offer on what commands would be used to automate this.

 

 

    This topic has been closed for replies.

    1 reply

    pete_freitag
    Participating Frequently
    July 21, 2021

    Hi There,

     

    Yes, I have a bunch of CI Scripts for testing CFML code. Here's one for GitLab that uses Fixinator to scan the code for security issues: https://github.com/foundeo/fixinator/wiki/Running-Fixinator-on-GitLab

     

    In that example it isn't started a dev server locally, but here's one that does: https://www.petefreitag.com/item/902.cfm that example is using GitHub Actions, not GitLab, but the general ideas are mostly the same. 

     

    Hope that helps!