- Disabled the new skyframe analysis+execution phase due to symlink p… #46
Workflow file for this run
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
name: otel_sdk | |
# Example: | |
# git tag -a v1.13.0-dll-0.3 -m "Tagged. You are it!" && git push --tags | |
on: | |
push: | |
tags: | |
- "*" | |
branches: | |
- main | |
jobs: | |
otel_sdk_release: | |
name: build otel_sdk | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- run: choco upgrade llvm | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
path: c:/b | |
enableCrossOsArchive: true | |
key: otel_sdk-${{ runner.os }} | |
- name: run otel_sdk_build.cmd | |
run: | | |
echo "build --disk_cache=c:/b/d" > ../top.bazelrc | |
echo "common --repository_cache=c:/b/r" >> ../top.bazelrc | |
echo "startup --output_user_root=c:/b/u" >> ../top.bazelrc | |
./otel_sdk_build.cmd | |
- name: release otel_sdk.zip | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: ./otel_sdk.zip |