Skip to content

Commit 290b58c

Browse files
authored
Add configuration for building 1st party apps (#25265)
This PR adds: - Updates to the AL-Go-Settings.json file - Disabled tests - A copy of the Builds/Scripts folder from BCApps - A copy of UpdateGitHubGoSystemFiles and UpdatePackageVersions from BCApps - Two AL-Go projects: _Build/projects/1st Party Apps (W1)_ and _Build/projects/1st Party Apps Tests (W1)_
1 parent f66bd1c commit 290b58c

File tree

72 files changed

+1900
-995
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1900
-995
lines changed

.github/AL-Go-Settings.json

+23-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"runs-on": "windows-latest",
66
"cacheImageName": "",
77
"UsePsSession": false,
8-
"artifact": "bcartifacts//23.1.13431.14020/base",
8+
"artifact": "bcartifacts//23.1.13431.14067/base",
99
"country": "base",
1010
"useProjectDependencies": true,
1111
"repoVersion": "23.1",
@@ -27,22 +27,35 @@
2727
"CreateRelease.yaml",
2828
"CreateTestApp.yaml",
2929
"Current.yaml",
30+
"IncrementVersionNumber.yaml",
3031
"NextMajor.yaml",
3132
"NextMinor.yaml",
32-
"PublishToEnvironment.yaml"
33+
"PublishToEnvironment.yaml",
34+
"Test Current.settings.json"
3335
],
34-
"buildModes": [
35-
"Default",
36-
"Clean"
36+
"excludeEnvironments": [
37+
"Official-Build"
3738
],
38-
"excludeEnvironments": [
39-
"Official"
39+
"buildModes": [
40+
"Translated"
4041
],
41-
"enableCodeCop": true,
4242
"CICDPushBranches": [
4343
"main"
4444
],
45+
"CICDPullRequestBranches": [
46+
"main"
47+
],
48+
"enableCodeCop": true,
49+
"enableAppSourceCop": true,
50+
"enablePerTenantExtensionCop": true,
51+
"enableUICop": true,
4552
"rulesetFile": "..\\..\\..\\Apps\\rulesets\\app.ruleset.json",
46-
"PullRequestTrigger": "pull_request",
47-
"alwaysBuildAllProjects": true
53+
"skipUpgrade": true,
54+
"fullBuildPatterns": [
55+
"Build/*",
56+
"src/rulesets/*",
57+
".github/workflows/PullRequestHandler.yaml",
58+
".github/workflows/_BuildALGoProject.yaml"
59+
],
60+
"PullRequestTrigger": "pull_request"
4861
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Update BC Artifact Version
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "55 05 * * 0,2,4" # Run at 05:55 UTC on Sunday, Tuesday, and Thursday
7+
8+
defaults:
9+
run:
10+
shell: powershell
11+
12+
jobs:
13+
GetBranches:
14+
name: Get Branches
15+
runs-on: windows-latest
16+
outputs:
17+
UpdateBranches: ${{ steps.GetBranches.outputs.UpdateBranches }}
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v3
21+
22+
- name: Get Branches
23+
id: GetBranches
24+
run: |
25+
git fetch
26+
$branches = @(git for-each-ref --format="'%(refname:short)'" refs/remotes/origin/release/ | % { $_ -replace 'origin/', '' })
27+
$branches += "'main'"
28+
29+
$branchMatrix = "[$($branches -join ',')]"
30+
Write-Host "Updating branches: $branchMatrix"
31+
Add-Content -Path $env:GITHUB_OUTPUT -Value "UpdateBranches=$branchMatrix"
32+
33+
UpdateBCArtifactVersion:
34+
name: "[${{ matrix.branch }}] Update BC Artifact Version"
35+
environment: Official-Build
36+
runs-on: windows-latest
37+
needs: GetBranches
38+
strategy:
39+
matrix:
40+
branch: ${{ fromJson(needs.GetBranches.outputs.UpdateBranches) }}
41+
fail-fast: false
42+
steps:
43+
- name: Checkout
44+
uses: actions/checkout@v3
45+
with:
46+
ref: ${{ matrix.branch }}
47+
48+
- name: Update BC Artifact Version
49+
env:
50+
GH_TOKEN: ${{ secrets.GHTOKENWORKFLOW }}
51+
run: |
52+
build/scripts/UpdateBCArtifactVersion.ps1 -Repository $ENV:GITHUB_REPOSITORY -TargetBranch ${{ matrix.branch }} -Actor $env:GITHUB_ACTOR

.github/workflows/UpdatePackageVersions.yaml

+30-6
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,44 @@ defaults:
1010
shell: powershell
1111

1212
jobs:
13+
GetBranches:
14+
name: Get Branches
15+
runs-on: windows-latest
16+
outputs:
17+
UpdateBranches: ${{ steps.GetBranches.outputs.UpdateBranches }}
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v3
21+
22+
- name: Get Branches
23+
id: GetBranches
24+
run: |
25+
git fetch
26+
$branches = @(git for-each-ref --format="'%(refname:short)'" refs/remotes/origin/release/ | % { $_ -replace 'origin/', '' })
27+
$branches += "'main'"
28+
29+
$branchMatrix = "[$($branches -join ',')]"
30+
Write-Host "Updating branches: $branchMatrix"
31+
Add-Content -Path $env:GITHUB_OUTPUT -Value "UpdateBranches=$branchMatrix"
32+
1333
UpdatePackageVersions:
14-
if: github.repository_owner == 'microsoft'
34+
name: "[${{ matrix.branch }}] Update Package Versions"
1535
runs-on: windows-latest
36+
environment: Official-Build
37+
needs: GetBranches
1638
strategy:
1739
matrix:
18-
branch: ['main']
40+
branch: ${{ fromJson(needs.GetBranches.outputs.UpdateBranches) }}
41+
fail-fast: false
1942
steps:
2043
- name: Checkout
2144
uses: actions/checkout@v3
2245
with:
2346
ref: ${{ matrix.branch }}
24-
47+
2548
- name: Update Package Versions
26-
run: |
27-
Build/Scripts/UpdatePackageVersions.ps1 -TargetBranch ${{ matrix.branch }} -Actor $env:GITHUB_ACTOR
2849
env:
29-
GITHUB_TOKEN: ${{ secrets.GHTOKENWORKFLOW }}
50+
GH_TOKEN: ${{ secrets.GHTOKENWORKFLOW }}
51+
InsiderSASToken: ${{ secrets.INSIDERSASTOKEN }}
52+
run: |
53+
build/scripts/UpdatePackageVersions.ps1 -Repository $ENV:GITHUB_REPOSITORY -TargetBranch ${{ matrix.branch }} -Actor $env:GITHUB_ACTOR
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"codeunitId": 135080,
4+
"CodeunitName": "AMC Bank Stmt E2E Web Serv",
5+
"Method": "*"
6+
}
7+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"codeunitId": 132558,
4+
"CodeunitName": "AMC Banking Credential UT",
5+
"Method": "*"
6+
}
7+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"codeunitId": 135087,
4+
"CodeunitName": "AMC CT E2E Web Service Test",
5+
"Method": "*"
6+
}
7+
]

0 commit comments

Comments
 (0)