build-cachelib-ubuntu-22 #974
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
# Copyright (c) Meta Platforms, Inc. and affiliates. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: build-cachelib-ubuntu-22 | |
on: | |
push: | |
tags: | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 7 * * *' | |
jobs: | |
build-cachelib-ubuntu-22: | |
name: "Ubuntu-22 - Build CacheLib with all dependencies" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "Show Head Commit" | |
env: | |
CONTENT: ${{ toJSON(github.event.head_commit) }} | |
run: echo "$CONTENT" | |
- name: "update packages" | |
run: sudo apt-get update | |
- name: "install sudo,git" | |
run: sudo apt-get install -y git procps | |
- name: "System Information" | |
run: | | |
echo === uname === | |
uname -a | |
echo === /etc/os-release === | |
cat /etc/os-release | |
echo === df -hl === | |
df -hl | |
echo === nproc === | |
nproc || true | |
echo === free -h === | |
free -h | |
echo === top === | |
top -b -n1 -1 -Eg || timeout 1 top -b -n1 | |
echo === env === | |
env | |
echo === cc -v === | |
cc -v | |
echo === g++ -v === | |
g++ -v | |
- name: "checkout sources" | |
uses: actions/checkout@v3 | |
- name: "Add workspace as a safe directory" | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: "Install Prerequisites" | |
run: ./contrib/build.sh -S -B | |
- name: "Test: update-submodules" | |
run: ./contrib/update-submodules.sh | |
- name: "Install dependency: zstd" | |
run: ./contrib/build-package.sh -j -v -i zstd | |
- name: "Install dependency: googleflags" | |
run: ./contrib/build-package.sh -j -v -i googleflags | |
- name: "Install dependency: googlelog" | |
run: ./contrib/build-package.sh -j -v -i googlelog | |
- name: "Install dependency: googletest" | |
run: ./contrib/build-package.sh -j -v -i googletest | |
- name: "Install dependency: sparsemap" | |
run: ./contrib/build-package.sh -j -v -i sparsemap | |
- name: "Install dependency: fmt" | |
run: ./contrib/build-package.sh -j -v -i fmt | |
- name: "Install dependency: folly" | |
run: ./contrib/build-package.sh -j -v -i folly | |
- name: "Install dependency: fizz" | |
run: ./contrib/build-package.sh -j -v -i fizz | |
- name: "Install dependency: wangle" | |
run: ./contrib/build-package.sh -j -v -i wangle | |
- name: "Install dependency: mvfst" | |
run: ./contrib/build-package.sh -j -v -i mvfst | |
- name: "Install dependency: fbthrift" | |
run: ./contrib/build-package.sh -j -v -i fbthrift | |
- name: "build CacheLib" | |
# Build cachelib in debug mode (-d) and with all tests (-t) | |
run: ./contrib/build-package.sh -j -v -i -d -t cachelib | |
- name: "run cachebench" | |
run: ./opt/cachelib/bin/cachebench --json_test_config ./opt/cachelib/test_configs/simple_test.json | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cachelib-cmake-logs | |
path: | | |
build-cachelib/CMakeFiles/*.log | |
build-cachelib/CMakeCache.txt | |
build-cachelib/Makefile | |
build-cachelib/**/Makefile | |
if-no-files-found: warn | |
retention-days: 1 |