Created
July 30, 2022 05:09
-
-
Save SheepTester/7929231253a514698962edf269b8d601 to your computer and use it in GitHub Desktop.
GitHub workflow for building Carbon with GitHub Actions
This file contains hidden or 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: Build Carbon | |
on: [workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- uses: bazelbuild/setup-bazelisk@v2 | |
- run: brew install llvm | |
- run: bazel build //explorer | |
- uses: actions/[email protected] | |
with: | |
name: explorer | |
path: bazel-bin/explorer/explorer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment