-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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)_
- Loading branch information
1 parent
f66bd1c
commit 290b58c
Showing
72 changed files
with
1,900 additions
and
995 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Update BC Artifact Version | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "55 05 * * 0,2,4" # Run at 05:55 UTC on Sunday, Tuesday, and Thursday | ||
|
||
defaults: | ||
run: | ||
shell: powershell | ||
|
||
jobs: | ||
GetBranches: | ||
name: Get Branches | ||
runs-on: windows-latest | ||
outputs: | ||
UpdateBranches: ${{ steps.GetBranches.outputs.UpdateBranches }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get Branches | ||
id: GetBranches | ||
run: | | ||
git fetch | ||
$branches = @(git for-each-ref --format="'%(refname:short)'" refs/remotes/origin/release/ | % { $_ -replace 'origin/', '' }) | ||
$branches += "'main'" | ||
$branchMatrix = "[$($branches -join ',')]" | ||
Write-Host "Updating branches: $branchMatrix" | ||
Add-Content -Path $env:GITHUB_OUTPUT -Value "UpdateBranches=$branchMatrix" | ||
UpdateBCArtifactVersion: | ||
name: "[${{ matrix.branch }}] Update BC Artifact Version" | ||
environment: Official-Build | ||
runs-on: windows-latest | ||
needs: GetBranches | ||
strategy: | ||
matrix: | ||
branch: ${{ fromJson(needs.GetBranches.outputs.UpdateBranches) }} | ||
fail-fast: false | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ matrix.branch }} | ||
|
||
- name: Update BC Artifact Version | ||
env: | ||
GH_TOKEN: ${{ secrets.GHTOKENWORKFLOW }} | ||
run: | | ||
build/scripts/UpdateBCArtifactVersion.ps1 -Repository $ENV:GITHUB_REPOSITORY -TargetBranch ${{ matrix.branch }} -Actor $env:GITHUB_ACTOR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"codeunitId": 135080, | ||
"CodeunitName": "AMC Bank Stmt E2E Web Serv", | ||
"Method": "*" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"codeunitId": 132558, | ||
"CodeunitName": "AMC Banking Credential UT", | ||
"Method": "*" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"codeunitId": 135087, | ||
"CodeunitName": "AMC CT E2E Web Service Test", | ||
"Method": "*" | ||
} | ||
] |
Oops, something went wrong.