Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

chore: Use official apache/pegasus repo of DockerHub #1093

Merged
merged 5 commits into from
Apr 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/compilation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,15 @@ jobs:
compiler: "clang-9,clang++-9"
os: ubuntu1804
container:
image: ghcr.io/pegasus-kv/thirdparties-bin:${{ matrix.os }}
image: apache/pegasus:thirdparties-bin-${{ matrix.os }}
steps:
-
uses: actions/checkout@v2
-
name: Unpack prebuilt third-parties
- uses: actions/checkout@v2
- name: Unpack prebuilt third-parties
run: unzip /root/thirdparties-bin.zip -d ./thirdparty
-
name: Compilation on GCC
- name: Compilation on GCC
if: ${{ matrix.compiler-family == 'gcc' }}
run: ./run.sh build -c --skip_thirdparty
-
name: Compilation on Clang
- name: Compilation on Clang
if: ${{ matrix.compiler-family == 'clang' }}
env:
COMPILER: ${{ matrix.compiler }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cpp_actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
container:
image: apachepegasus/clang-format-3.9
image: apache/pegasus:clang-format-3.9
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -51,7 +51,7 @@ jobs:
needs: lint
runs-on: self-hosted
container:
image: apachepegasus/thirdparties-bin:ubuntu1804
image: apache/pegasus:thirdparties-bin-ubuntu1804
env:
CCACHE_DIR: /tmp/ccache/pegasus
CCACHE_MAXSIZE: 10G
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
needs: lint
runs-on: self-hosted
container:
image: apachepegasus/thirdparties-bin:ubuntu1804
image: apache/pegasus:thirdparties-bin-ubuntu1804
env:
CCACHE_DIR: /tmp/ccache/pegasus
CCACHE_MAXSIZE: 10G
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
needs: lint
runs-on: self-hosted
container:
image: apachepegasus/thirdparties-bin:ubuntu1804
image: apache/pegasus:thirdparties-bin-ubuntu1804
env:
CCACHE_DIR: /tmp/ccache/pegasus
CCACHE_MAXSIZE: 10G
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
needs: lint
runs-on: self-hosted
container:
image: apachepegasus/thirdparties-bin:ubuntu1804
image: apache/pegasus:thirdparties-bin-ubuntu1804
env:
CCACHE_DIR: /tmp/ccache/pegasus
CCACHE_MAXSIZE: 10G
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp_always_pass_actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
# run on each pull request
pull_request:
types: [ synchronize, opened, reopened ]
paths:
paths-ignore:
- .github/workflows/cpp_actions.yaml
- CMakeLists.txt
- bin
Expand Down