Skip to content

Commit

Permalink
Merge pull request #388 from nmreadelf/master
Browse files Browse the repository at this point in the history
Fix action fail problem
  • Loading branch information
chenzhangyi committed Feb 23, 2023
2 parents 99a12e0 + 508937a commit 3cae30f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
compiler: [clang, gcc]
os: [ubuntu-latest]
os: [ubuntu-20.04]
build_tool: [cmake, bazel]
with_test: [true, false]
exclude:
Expand Down Expand Up @@ -46,6 +46,7 @@ jobs:
- name: Install dependencies on Linux
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get update
sudo apt-get install -qq libgflags-dev \
libprotobuf-dev libprotoc-dev protobuf-compiler \
libleveldb-dev libgoogle-perftools-dev
Expand Down
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ http_archive(

http_archive(
name = "com_github_brpc_brpc",
sha256 = "c0168d22205724bfa1939c9ad79bd9f74a98e0bd05be9e8f5cc504ef44c676a1",
strip_prefix = "incubator-brpc-1.0.0-rc02",
url = "https://github.com/apache/incubator-brpc/archive/refs/tags/1.0.0-rc02.tar.gz"
sha256 = "58a06997ae07c1654979fb8356884481ab9803b60de04c1b341d986e2b62220d",
strip_prefix = "brpc-1.1.0",
url = "https://github.com/apache/incubator-brpc/archive/refs/tags/1.1.0.tar.gz"
)

bind(
Expand Down

0 comments on commit 3cae30f

Please sign in to comment.