Skip to content

Commit 08bdb02

Browse files
Merged PR 13214836: change to installing musl-gcc
change to installing musl-gcc ---- #### AI description (iteration 1) #### PR Classification This PR updates the build configuration by switching the installed compiler from gcc-multilib to musi-gcc and adjusting the build projects list. #### PR Summary The changes update the installation command in the pipeline and modify the build script to include the current directory in the project sequence. - `/.pipelines/DSC-Official.yml`: Replace installing gcc-multilib with installing musi-gcc and comment out the original command. - `/build.ps1`: Add the current directory (`"."`) to the list of build projects. <!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
2 parents 439b80c + b04bf4a commit 08bdb02

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.pipelines/DSC-Official.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ extends:
271271
apt -y install clang
272272
apt -y install llvm
273273
apt -y install musl-tools
274-
apt -y install gcc-multilib
274+
apt -y install musi-gcc
275+
#apt -y install gcc-multilib
275276
apt -y install libssl-dev
276277
apt -y install pkg-config
277278
msrustup default stable-aarch64-unknown-linux-musl

build.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ if (!$SkipBuild) {
309309

310310
# projects are in dependency order
311311
$projects = @(
312+
".",
312313
"tree-sitter-dscexpression",
313314
"tree-sitter-ssh-server-config",
314315
"security_context_lib",

0 commit comments

Comments
 (0)