Skip to content

Commit

Permalink
chore(CI): Add cfpm script
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Jul 11, 2023
1 parent b022467 commit ecc4c28
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
box server start cfengine=${{ matrix.cfengine }}
sleep 30
- name: CFPM
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
run: |
box run-script install:2021
- name: Install dependencies
run: |
box install
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
box server start cfengine=${{ matrix.cfengine }}
sleep 30
- name: CFPM
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
run: |
box run-script install:2021
- name: Install dependencies
run: |
box install --verbose
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
box server start cfengine=${{ matrix.cfengine }}
sleep 30
- name: CFPM
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
run: |
box run-script install:2021
- name: Install dependencies
run: |
box install
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ jobs:
box server start cfengine=${{ matrix.cfengine }}
sleep 30
- name: CFPM
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
run: |
box run-script install:2021
- name: Install dependencies
run: |
box install
Expand Down
3 changes: 2 additions & 1 deletion box.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
],
"scripts":{
"format":"cfformat run models/**/*.cfc,dsl/**/*.cfc,tests/specs/**/*.cfc,ModuleConfig.cfc --overwrite",
"format:check":"cfformat check models/**/*.cfc,dsl/**/*.cfc,tests/specs/**/*.cfc,ModuleConfig.cfc --verbose"
"format:check":"cfformat check models/**/*.cfc,dsl/**/*.cfc,tests/specs/**/*.cfc,ModuleConfig.cfc --verbose",
"cfpm": "cfpm install postgresql"
},
"private":false,
"license":[
Expand Down

0 comments on commit ecc4c28

Please sign in to comment.