docs: multiple markdown docs fixed #2994
Workflow file for this run
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
name: Validation | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
types: [opened, synchronize, reopened] | |
schedule: | |
- cron: "00 00 * * 1" | |
jobs: | |
validation: | |
name: Validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup sccache-cache | |
uses: mozilla-actions/[email protected] | |
call_build_xline: | |
name: Build and Upload Artifacts | |
uses: ./.github/workflows/build_xline.yml | |
with: | |
docker_xline_image: "ghcr.io/xline-kv/build-env:latest" | |
additional_setup_commands: | | |
sudo apt-get install -y --force-yes expect | |
ldd ./xline | |
ldd ./benchmark | |
cp ../fixtures/{private,public}.pem . | |
docker build . -t ghcr.io/xline-kv/xline:latest | |
docker pull gcr.io/etcd-development/etcd:v3.5.5 | |
binaries: "xline,benchmark" | |
script_name: "validation_test.sh" | |
uploadLogs: true |