Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 512e4d2

Browse files
authored
Merge pull request #1 from microsoft/beheim/oss
moving build scripts into build folder
2 parents e3acf5a + 3872499 commit 512e4d2

File tree

6 files changed

+4
-84
lines changed

6 files changed

+4
-84
lines changed

bootstrap.cmd renamed to build/bootstrap.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dotnet --info || GOTO missingDotnet
66
git --version || GOTO missingGit
77

88
:: Set Build number on all files that uses it
9-
CALL setVersionNumber.cmd
9+
CALL build\setVersionNumber.cmd
1010

1111
:: Initialize the compiler's nuspec file
1212
CALL :nuspecBootstrap

build/init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ steps:
2121
- task: BatchScript@1
2222
displayName: 'Run bootstrap.cmd'
2323
inputs:
24-
filename: bootstrap.cmd
24+
filename: build/bootstrap.cmd
2525
modifyEnvironment: true

build/sdl-tools.yml

Lines changed: 0 additions & 79 deletions
This file was deleted.
File renamed without changes.

build/steps.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ steps:
1515
##
1616
# Wrap-up
1717
##
18-
- template: sdl-tools.yml
19-
- template: step-wrap-up.yml
18+
- template: wrap-up.yml

src/QsCompiler/build-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
steps:
55

66
- task: DotNetCoreCLI@2
7-
displayName: 'Build and test Q# compiler'
7+
displayName: 'Build and test Q# compiler and language server'
88
inputs:
99
command: test
1010
arguments: '-c $(BuildConfiguration) -v $(Build.Verbosity) /p:DefineConstants=$(Assembly.Constants) /p:Version=$(Assembly.Version)'

0 commit comments

Comments
 (0)