Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open Search Test CI #4

Merged
merged 2 commits into from
Dec 3, 2024
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Elasticsearch

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
tests:
elasticsearch_tests:
runs-on: ubuntu-latest
services:
es:
Expand Down Expand Up @@ -39,4 +39,3 @@ jobs:

- name: Run tests
run: python3 search_test.py --count=2000 --search_db_url=http://localhost:9200

54 changes: 54 additions & 0 deletions .github/workflows/github_container_image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Create and publish a Docker image

on:
push:
tags:
- 'v*'

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write
attestations: write
id-token: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: type=semver, pattern={{raw}}

- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
41 changes: 41 additions & 0 deletions .github/workflows/opensearch_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: OpenSearch

on:
push:
branches:
- master
pull_request:

jobs:
opensearch_tests:
runs-on: ubuntu-latest
services:
es:
image: opensearchproject/opensearch:2
ports:
- 9200:9200
options: >-
--env discovery.type=single-node
--env DISABLE_SECURITY_PLUGIN=true

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt

- name: Wait for Opensearch
run: |
sleep 10
curl -s http://localhost:9200

- name: Run tests
run: python3 search_test.py --count=2000 --search_db_url=http://localhost:9200
Loading