-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
904 additions
and
200 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,15 @@ | ||
# This installs the build dependencies for: | ||
# - using crosstool-ng to install a toolchain | ||
# - building qemu | ||
# | ||
steps: | ||
- bash: | | ||
sudo apt-get install -y build-essential autoconf bison flex \ | ||
texinfo help2man gawk libtool-bin libncurses5-dev git libtool \ | ||
gettext wget curl libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev \ | ||
lld-9 clang-9 cmake | ||
displayName: 'Install build dependencies' | ||
|
||
- bash: | | ||
./install-crosstool-ng.sh | ||
displayName: 'Build and install crosstool-ng' |
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,19 @@ | ||
steps: | ||
- publish: $(Build.ArtifactStagingDirectory) | ||
artifact: ${{ parameters.azure_name }} | ||
displayName: "Upload Azure Artifact" | ||
|
||
- task: GithubRelease@0 | ||
displayName: 'Upload GitHub Release (if tagged)' | ||
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/')) | ||
inputs: | ||
gitHubConnection: lowrisc-artifact-upload | ||
repositoryName: lowrisc/lowrisc-toolchains | ||
tagSource: manual | ||
tag: "$(ReleaseTag)" | ||
action: edit | ||
addChangeLog: false | ||
assetUploadMode: replace | ||
isPreRelease: true | ||
assets: | | ||
$(Build.ArtifactStagingDirectory)/*.tar.xz |
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
Oops, something went wrong.