@@ -20,27 +20,46 @@ jobs:
20
20
uses : apex-enterprise-patterns/setup-sfdx@v2 # We're using a fork of https://github.com/sfdx-actions/setup-sfdx for safety
21
21
with :
22
22
sfdx-auth-url : ${{ secrets.DEVHUB_SFDXURL }}
23
- - name : Install the required plugins
24
- run : echo y | sf plugins install shane-sfdx-plugins
23
+ # - name: Install the required plugins
24
+ # run: echo y | sf plugins install shane-sfdx-plugins
25
25
- name : Setup the config parameters needed
26
26
run : sf config set target-dev-hub SFDX-ENV --global # Even though the setup-sfdx action uses --setdefaultdevhubusername, it doesn't seem to stick since it uses --setdefaultusername so we brute force it here
27
27
- name : Create the scratch org
28
28
run : sf org create scratch --definition-file config/project-scratch-def.json --set-default --duration-days 1 --no-track-source
29
- - name : Install required dependency frameworks
30
- run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo fflib-apex-mocks --path sfdx-source/apex-mocks
31
- - run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo fflib-apex-common --path sfdx-source/apex-common
32
- - run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo force-di --path force-di
29
+ # - name: Install required dependency frameworks
30
+ # run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo fflib-apex-mocks --path sfdx-source/apex-mocks
31
+ # - run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo fflib-apex-common --path sfdx-source/apex-common
32
+ # - run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo force-di --path force-di
33
+ - name : Clone fflib-apex-mocks repo
34
+ run : mkdir temp && git clone https://github.com/apex-enterprise-patterns/fflib-apex-mocks.git "temp/fflib-apex-mocks"
35
+ - name : Deploy and compile the fflib-apex-mocks codebase
36
+ run : cd temp/fflib-apex-mocks && sf project deploy start --ignore-conflicts && cd ../..
37
+ - name : Clone fflib-apex-common repo
38
+ run : mkdir temp && git clone https://github.com/apex-enterprise-patterns/fflib-apex-common.git "temp/fflib-apex-common"
39
+ - name : Deploy and compile the fflib-apex-common codebase
40
+ run : cd temp/fflib-apex-common && sf project deploy start --ignore-conflicts && cd ../..
41
+ - name : Clone force-di repo
42
+ run : mkdir temp && git clone https://github.com/apex-enterprise-patterns/force-di.git "temp/force-di"
43
+ - name : Deploy and compile the force-di codebase
44
+ run : cd temp/force-di && sf project deploy start --ignore-conflicts && cd ../..
33
45
- name : Deploy and compile the codebase
34
46
run : sf project deploy start
35
47
- name : Run the core framework tests
36
48
run : sf apex run test --wait 5
37
49
# Intentionally install the Sample Code after the core AEP Commons test pass succeeds so that we don't deploy anything in Sample Code
38
50
# that could mask a test failure. A much more involved solution would've been to do a workflow_dispatch to the samplecode project.
51
+ # - name: Install sample code project to verify with
52
+ # run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-common
53
+ # - run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-marketing
54
+ # - run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-sales
55
+ # - run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-service
39
56
- name : Install sample code project to verify with
40
- run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-common
41
- - run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-marketing
42
- - run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-sales
43
- - run : sf shane github src install --convert --githubuser apex-enterprise-patterns --repo at4dx-samplecode --path sfdx-source/reference-implementation-service
57
+ run : git clone https://github.com/apex-enterprise-patterns/at4dx-samplecode.git "temp/fflib-apex-common-samplecode" && cd temp/fflib-apex-common-samplecode
58
+ - run : sf project deploy start --ignore-conflicts --source-dir sfdx-source/reference-implementation-common
59
+ - run : sf project deploy start --ignore-conflicts --source-dir sfdx-source/reference-implementation-marketing
60
+ - run : sf project deploy start --ignore-conflicts --source-dir sfdx-source/reference-implementation-sales
61
+ - run : sf project deploy start --ignore-conflicts --source-dir sfdx-source/reference-implementation-service
62
+ - run : cd ../..
44
63
# Run the core framework tests and the sample code project tests
45
64
- name : Run the core framework tests and the sample code project tests
46
65
run : sf apex run test --wait 5
0 commit comments