You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: AppHandling/Run-AlPipeline.ps1
+8-3
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@
11
11
If a folder on the host computer is specified in the sharedFolder parameter, it will be shared with the container as c:\shared
12
12
.ParameterlicenseFile
13
13
License file to use for AL Pipeline.
14
+
.Parameteraccept_insiderEula
15
+
Switch, which you need to specify if you are going to create a container with an insider build of Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=2245051)
14
16
.ParametercontainerName
15
17
This is the containerName going to be used for the build/test container. If not specified, the container name will be the pipeline name followed by -bld.
16
18
.ParameterimageName
@@ -82,6 +84,7 @@
82
84
This is the folder (relative to base folder) where compiled apps are placed. Only relevant when not using useDevEndpoint.
83
85
.Parameterartifact
84
86
The description of which artifact to use. This can either be a URL (from Get-BcArtifactUrl) or in the format storageAccount/type/version/country/select/sastoken, where these values are transferred as parameters to Get-BcArtifactUrl. Default value is ///us/current.
87
+
If you specify accept_insiderEula, you do not need to specify a sasToken
85
88
.ParameteruseGenericImage
86
89
Specify a private (or special) generic image to use for the Container OS. Default is calling Get-BestGenericImageName.
87
90
.ParameterbuildArtifactFolder
@@ -133,7 +136,7 @@
133
136
.ParametervsixFile
134
137
Specify a URL or path to a .vsix file in order to override the .vsix file in the image with this.
135
138
Use Get-LatestAlLanguageExtensionUrl to get latest AL Language extension from Marketplace.
136
-
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -sasToken $insiderSasToken) to get latest insider .vsix
139
+
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -accept_insiderEula) to get latest insider .vsix
137
140
.ParameterenableCodeCop
138
141
Include this switch to include Code Cop Rules during compilation.
Copy file name to clipboardexpand all lines: Artifacts/Get-BCArtifactUrl.ps1
+26-38
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,10 @@
23
23
.ParameterstorageAccount
24
24
The storageAccount that is being used where artifacts are stored (default is bcartifacts, usually should not be changed).
25
25
.ParametersasToken
26
-
The token that for accessing protected Azure Blob Storage (like insider builds). Make sure to set the right storageAccount!
26
+
The token that for accessing protected Azure Blob Storage. Make sure to set the right storageAccount!
27
+
Note that Business Central Insider artifacts doesn't require a sasToken after October 1st 2023, you can use the switch -accept_insiderEula to accept the EULA instead.
28
+
.Parameteraccept_insiderEula
29
+
Accept the EULA for Business Central Insider artifacts. This is required for using Business Central Insider artifacts without providing a SAS token after October 1st 2023.
27
30
.Example
28
31
Get the latest URL for Belgium:
29
32
Get-BCArtifactUrl -Type OnPrem -Select Latest -country be
@@ -44,6 +47,7 @@ function Get-BCArtifactUrl {
44
47
[DateTime] $before,
45
48
[String] $storageAccount='',
46
49
[String] $sasToken='',
50
+
[switch] $accept_insiderEula,
47
51
[switch] $doNotCheckPlatform
48
52
)
49
53
@@ -101,48 +105,19 @@ try {
101
105
if ($storageAccount-ne''-or$type-eq'OnPrem'-or$version-ne'') {
102
106
throw"You cannot specify storageAccount, type=OnPrem or version when selecting $select release"
103
107
}
104
-
if ($sasToken-eq'') {
105
-
throw"You need to specify an insider SasToken if you want to get $select release"
if ($storageAccount-eq'bcinsider.blob.core.windows.net') {
145
+
if (!$accept_insiderEULA) {
146
+
if ($sasToken) {
147
+
Write-Host-ForegroundColor Yellow "After October 1st 2023, you can specify -accept_insiderEula to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) for Business Central Insider artifacts instead of providing a SAS token."
148
+
}
149
+
else {
150
+
throw"You need to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) by specifying -accept_insiderEula or by providing a SAS token to get access to insider builds"
Copy file name to clipboardexpand all lines: ContainerHandling/New-NavContainer.ps1
+19-1
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@
6
6
Adds shortcut on the desktop for Web Client and Container PowerShell prompt
7
7
.Parameteraccept_eula
8
8
Switch, which you need to specify if you accept the eula for running NAV or Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=861843)
9
+
.Parameteraccept_insiderEula
10
+
Switch, which you need to specify if you are going to create a container with an insider build of Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=2245051)
9
11
.Parameteraccept_outdated
10
12
Specify accept_outdated to ignore error when running containers which are older than 90 days
11
13
.ParametercontainerName
@@ -174,11 +176,13 @@
174
176
.ParametervsixFile
175
177
Specify a URL or path to a .vsix file in order to override the .vsix file in the image with this.
176
178
Use Get-LatestAlLanguageExtensionUrl to get latest AL Language extension from Marketplace.
177
-
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -sasToken $insiderSasToken) to get latest insider .vsix
179
+
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -accept_insiderEula) to get latest insider .vsix
# When using artifacts, you always use best container os - no need to replatform
532
537
$useBestContainerOS=$false
533
538
539
+
if ($artifactUrl-like'https://bcinsider.blob.core.windows.net/*'-or$artifactUrl-like'https://bcinsider.azureedge.net/*') {
540
+
if (!$accept_insiderEULA) {
541
+
$sasToken="?$("$($artifactUrl)?".Split('?')[1])"
542
+
if ($sasToken-eq'?') {
543
+
throw"You need to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) by specifying -accept_insiderEula or by providing a SAS token to get access to insider builds"
544
+
}
545
+
else {
546
+
TestSasToken -url $artifactUrl
547
+
Write-Host-ForegroundColor Yellow "After October 1st 2023, you can specify -accept_insiderEula to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) for Business Central Insider artifacts instead of providing a SAS token."
Copy file name to clipboardexpand all lines: CreateALGoRepo.ps1
+2-17
Original file line number
Diff line number
Diff line change
@@ -438,7 +438,6 @@ $Step = @{
438
438
439
439
$orgSecrets=@()
440
440
$secrets= [ordered]@{
441
-
"InsiderSasToken"=""
442
441
"ghTokenWorkflow"=""
443
442
"AdminCenterApiCredentials"=""
444
443
"LicenseFileUrl"=""
@@ -832,7 +831,7 @@ $Step.scheduledWorkflows {
832
831
833
832
834
833
'@`
835
-
-Description "AL-Go for GitHub includes three workflows, which typically are setup to run on a schedule.`nNote that in order to run the Test Next Minor and Test Next Major workflows, you need to have provide a secret called insiderSasToken.`n"`
834
+
-Description "AL-Go for GitHub includes three workflows, which typically are setup to run on a schedule.`n"`
836
835
-options ([ordered]@{"Current"="Test Current : $($settings.CurrentSchedule)"; "NextMinor"="Test Next Minor : $($settings.NextMinorSchedule)"; "NextMajor"="Test Next Major : $($settings.NextMajorSchedule)"; "none"="No further changes needed" }) `
837
836
-question "Select schedule to change"`
838
837
-previousStep `
@@ -887,7 +886,7 @@ $Step.GitHubRunner {
887
886
888
887
$Step.Secrets {
889
888
890
-
$neededSecrets="- InsiderSasToken - if you want to run builds against future versions of Business Central, this secret needs to contain the insider SAS token from |https://aka.ms/collaborate|`n- GhTokenWorkflow - must be a valid personal access token with permissions to modify workflows, created from |https://github.com/settings/tokens|`n- [environment-]AuthContext - Authentication context for authenticating to specific environments (continuous deployment, publish to production)`n- AdminCenterApiCredentials - An AuthContext for accessing the Admin Center Api (creating development environments)`n- AZURE_CREDENTIALS - is used as a GitHub secret to provide access to an Azure KeyVault with your secrets`n"
889
+
$neededSecrets="- GhTokenWorkflow - must be a valid personal access token with permissions to modify workflows, created from |https://github.com/settings/tokens|`n- [environment-]AuthContext - Authentication context for authenticating to specific environments (continuous deployment, publish to production)`n- AdminCenterApiCredentials - An AuthContext for accessing the Admin Center Api (creating development environments)`n- AZURE_CREDENTIALS - is used as a GitHub secret to provide access to an Azure KeyVault with your secrets`n"
891
890
if ($appType-eq"AppSource") {
892
891
$neededSecrets+="- LicenseFile - needs to contain a direct download URL for your Business Central license file`n- CodeSignCertificateUrl - direct download URL for Code Signing certificate`n- CodeSignCertificatePassword - pfx password for code signing certificate."
Write-Host"The Insider SAS Token is available for Microsoft partners on https://aka.ms/collaborate for members of the Ready! for Dynamics 365 Business Central Engagement`nPlease follow the steps on https://aka.ms/bcpublisher to get access`n`nThe package containing the Insider SAS Token is called Working with Business Central Insider Builds and is available for download here:`n`nhttps://partner.microsoft.com/en-us/dashboard/collaborate/packages/9387`n"
1050
-
while ($true) {
1051
-
$secrets.InsiderSasToken=Read-Host"Please paste the Insider SAS token here"
1052
-
if (-not ($secrets.InsiderSasToken)) { break }
1053
-
try {
1054
-
Get-BCArtifactUrl-storageAccount bcinsider -country us -sasToken $secrets.InsiderSasToken
1055
-
break
1056
-
}
1057
-
catch {
1058
-
Write-Host-ForegroundColor Red "The Insider SAS Token is invalid"
1059
-
}
1060
-
}
1061
-
}
1062
1047
"ghTokenWorkflow" {
1063
1048
Write-Host"In order to run the Update AL-Go System files workflow, the ghTokenWorkflow secret needs to be defined.`nVisit the personal access tokens site for your account on GitHub and generate a new token with the workflow scope selected.`nNote that if you specify a PAT with an expiration date, you will have to update the token when it expires.`n`nYou can visit the Personal Access Tokens site on GitHub using this URL:`n`nhttps://github.com/settings/tokens`n"
1064
1049
$secrets.ghTokenWorkflow=Read-Host"Please paste the Personal Access Token with workflow scope here"
0 commit comments