Skip to content

Commit 919cf5b

Browse files
committed
Update build and fix a couple of things
1. Update to use .NET SDK 8.0.406 2. Set the execution permission to 'aish' on Linux and macOS before packaging 3. Sign Azure agent assembly with the 1st-party certificate
1 parent 9b66a08 commit 919cf5b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

build.psm1

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ function Copy-1PFilesToSign
336336
[string] $TargetRoot
337337
)
338338

339-
$pattern = "*.ps*1", "AIShell.*.dll", "aish.dll", "aish.exe", "Markdown.VT.dll", "ReadLine.dll"
339+
$pattern = "*.ps*1", "AIShell.*.dll", "aish.dll", "aish.exe", "Markdown.VT.dll", "ReadLine.dll", "Microsoft.Azure.Agent.dll"
340340

341341
if (Test-Path $TargetRoot) {
342342
Remove-Item -Path $TargetRoot -Recurse -Force

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "8.0.403"
3+
"version": "8.0.406"
44
}
55
}

tools/packaging/packaging.psm1

+9
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,15 @@ function New-TarballPackage
148148
}
149149
}
150150

151+
if (Get-Command -Name chmod -CommandType Application -ErrorAction Ignore) {
152+
Write-Verbose "Add the execution permission to 'aish'" -Verbose
153+
$executable = Join-Path $PackageSourcePath 'aish'
154+
chmod +x $executable
155+
156+
$permission = Get-ChildItem $executable | ForEach-Object UnixFileMode
157+
Write-Verbose "File permission: $permission" -Verbose
158+
}
159+
151160
if (Get-Command -Name tar -CommandType Application -ErrorAction Ignore) {
152161
Write-Verbose "Create tarball package" -Verbose
153162
$options = "-czf"

0 commit comments

Comments
 (0)