-
Notifications
You must be signed in to change notification settings - Fork 80
43 lines (41 loc) · 1.35 KB
/
docker-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Docker Build and Test
on:
pull_request:
workflow_dispatch:
inputs:
logLevel:
description: Log level
required: true
default: warning
type: choice
options:
- info
- warning
- debug
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# - name: Login to DockerHub
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# - uses: actions/checkout@v4
# with:
# repository: 'opensearch-project/opensearch-build'
# ref: 'main'
- uses: actions/checkout@v4
with:
# path: 'docker/ci/opensearch-benchmarks'
- name: Docker Build
# working-directory: 'docker/ci'
run: |
docker buildx version
docker buildx build --platform "linux/amd64,linux/arm64" --build-arg VERSION=`cat version.txt` --build-arg BUILD_DATE=`date -u +%Y-%m-%dT%H:%M:%SZ` --build-arg NOTES="test-docker-build" -t "opensearchstaging/opensearch-benchmark:`cat version.txt`" -f "docker/Dockerfile" .
# cp -a opensearch-benchmarks/* ./
# ./build-image-multi-arch.sh