Skip to content

Commit e37e23a

Browse files
committed
adjustments required to remove dependency on shane-sfdx-plugins
1 parent 5bea4ff commit e37e23a

File tree

1 file changed

+29
-10
lines changed

1 file changed

+29
-10
lines changed

.github/workflows/deploy.and.test.yml

+29-10
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,46 @@ jobs:
2020
uses: apex-enterprise-patterns/setup-sfdx@v2 #We're using a fork of https://github.com/sfdx-actions/setup-sfdx for safety
2121
with:
2222
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
2525
- name: Setup the config parameters needed
2626
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
2727
- name: Create the scratch org
2828
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 ../..
3345
- name: Deploy and compile the codebase
3446
run: sf project deploy start
3547
- name: Run the core framework tests
3648
run: sf apex run test --wait 5
3749
# Intentionally install the Sample Code after the core AEP Commons test pass succeeds so that we don't deploy anything in Sample Code
3850
# 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
3956
- 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 ../..
4463
# Run the core framework tests and the sample code project tests
4564
- name: Run the core framework tests and the sample code project tests
4665
run: sf apex run test --wait 5

0 commit comments

Comments
 (0)