Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

CICD Pipeline for ColdFusion Apps

Community Beginner ,
Jul 19, 2021 Jul 19, 2021

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.

 

 

672
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jul 21, 2021 Jul 21, 2021
LATEST

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!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources