-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bazelbuild/setup-bazelisk is deprecated; use bazel-contib/setup-bazel…
… instead (#791) [bazelbuild/setup-bazelisk](https://github.com/bazelbuild/setup-bazelisk) is deprecated; use [bazel-contib/setup-bazel](https://github.com/bazel-contrib/setup-bazel) instead.
- Loading branch information
1 parent
028f272
commit cfcf163
Showing
1 changed file
with
36 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -215,7 +215,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: bazelbuild/setup-bazelisk@v1 | ||
- uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-cache: true | ||
disk-cache: ${{ github.workflow }} | ||
repository-cache: true | ||
bazelisk-version: 1.x | ||
- run: bazel build :all | ||
- run: bazel test :stim_test | ||
build_clang: | ||
|
@@ -310,7 +315,12 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: bazelbuild/setup-bazelisk@v1 | ||
- uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-cache: true | ||
disk-cache: ${{ github.workflow }} | ||
repository-cache: true | ||
bazelisk-version: 1.x | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16.x | ||
|
@@ -342,7 +352,12 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: bazelbuild/setup-bazelisk@v1 | ||
- uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-cache: true | ||
disk-cache: ${{ github.workflow }} | ||
repository-cache: true | ||
bazelisk-version: 1.x | ||
- run: bazel build :stim_dev_wheel | ||
- run: pip install bazel-bin/stim-0.0.dev0-py3-none-any.whl | ||
- run: pip install pytest | ||
|
@@ -353,7 +368,12 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: bazelbuild/setup-bazelisk@v1 | ||
- uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-cache: true | ||
disk-cache: ${{ github.workflow }} | ||
repository-cache: true | ||
bazelisk-version: 1.x | ||
- run: bazel build :stim_dev_wheel | ||
- run: pip install bazel-bin/stim-0.0.dev0-py3-none-any.whl | ||
- run: pip install -e glue/cirq | ||
|
@@ -365,7 +385,12 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: bazelbuild/setup-bazelisk@v1 | ||
- uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-cache: true | ||
disk-cache: ${{ github.workflow }} | ||
repository-cache: true | ||
bazelisk-version: 1.x | ||
- run: bazel build :stim_dev_wheel | ||
- run: pip install bazel-bin/stim-0.0.dev0-py3-none-any.whl | ||
- run: pip install -e glue/sample | ||
|
@@ -378,7 +403,12 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: bazelbuild/setup-bazelisk@v1 | ||
- uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-cache: true | ||
disk-cache: ${{ github.workflow }} | ||
repository-cache: true | ||
bazelisk-version: 1.x | ||
- run: bazel build :stim_dev_wheel | ||
- run: pip install bazel-bin/stim-0.0.dev0-py3-none-any.whl | ||
- run: pip install -e glue/zx | ||
|