Skip to content

Commit

Permalink
Configure CI
Browse files Browse the repository at this point in the history
  • Loading branch information
avsej committed Jun 25, 2024
1 parent 4f7f168 commit f5fa6a2
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 3 deletions.
102 changes: 102 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
name: Test Build

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- name: Install NASM
run: |
choco install --no-progress nasm
- name: Install cbdinocluster
shell: python
run: |
import os
import platform
import urllib.request
home_bin_path = os.path.expanduser("~/bin")
os.makedirs(home_bin_path, exist_ok=True)
cbdinocluster_filename = "cbdinocluster-windows-amd64.exe" if platform.system() == "Windows" else "cbdinocluster-linux"
cbdinocluster_url = f"https://github.com/couchbaselabs/cbdinocluster/releases/download/v0.0.46/{cbdinocluster_filename}"
cbdinocluster_path = os.path.join(home_bin_path, cbdinocluster_filename)
urllib.request.urlretrieve(cbdinocluster_url, cbdinocluster_path)
if platform.system() != "Windows":
os.chmod(cbdinocluster_path, 0o755)
github_path = os.getenv("GITHUB_PATH")
if github_path:
with open(github_path, "a") as f:
f.write(f"{home_bin_path}\n")
- name: Initialize cbdinocluster
shell: python
run: |
import os
import platform
import subprocess
home_bin_path = os.path.expanduser("~/bin")
cbdinocluster_filename = "cbdinocluster-windows-amd64.exe" if platform.system() == "Windows" else "cbdinocluster-linux"
cbdinocluster_path = os.path.join(home_bin_path, cbdinocluster_filename)
subprocess.run([cbdinocluster_path, '-v', 'init', '--auto'])
# - name: Start couchbase cluster
# env:
# CLUSTERCONFIG: |
# nodes:
# - count: 2
# version: ${{ matrix.server }}
# services:
# - kv
# - n1ql
# - index
# - count: 1
# version: ${{ matrix.server }}
# services:
# - kv
# - fts
# - cbas
# - eventing
# docker:
# kv-memory: 1600
# run: |
# CLUSTER_ID=$(cbdinocluster -v allocate --def="${CLUSTERCONFIG}")
# CONNECTION_STRING=$(cbdinocluster -v connstr "${CLUSTER_ID}")
# cbdinocluster -v buckets add ${CLUSTER_ID} default --ram-quota-mb=100 --flush-enabled=true
# cbdinocluster -v buckets load-sample ${CLUSTER_ID} travel-sample
# echo "CLUSTER_ID=${CLUSTER_ID}" >> "$GITHUB_ENV"
# echo "CONNECTION_STRING=${CONNECTION_STRING}?dump_configuration=true" >> "$GITHUB_ENV"
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
timeout-minutes: 60
shell: python
run: |
import os
import subprocess
os.mkdir('build')
print("##[group]CMake Configure")
subprocess.run(['cmake', '-S', '.', '-B', 'build'])
print("##[endgroup]")
print("##[group]CMake Build")
subprocess.run(['cmake', '--build', 'build'])
- name: Run
timeout-minutes: 60
shell: python
run: |
import os
import subprocess
for root, _, files in os.walk('build'):
for file in files:
filepath = os.path.join(root, file)
if os.access(filepath, os.X_OK) or filepath.endswith('.exe'):
print(f"##[group]{filepath}")
subprocess.run(filepath)
print("##[endgroup]")
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

```bash
mkdir -p build
cd build
cmake ..
cmake --build .
cmake -S . -B build
cmake --build build
```

0 comments on commit f5fa6a2

Please sign in to comment.