Skip to content

Add github workflow running jenkins job #32

Add github workflow running jenkins job

Add github workflow running jenkins job #32

name: Build scylla-bench docker image with gocql PR
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
jobs:
# authorize:
# environment:
# ${{ github.event_name == 'pull_request_target' &&
# github.event.pull_request.head.repo.full_name != github.repository &&
# 'default' || 'internal' }}
# runs-on: ubuntu-latest
# steps:
# - run: true
build-scylla-bench:
# if: contains(github.event.pull_request.labels.*.name, 'extended-ci')
# needs: authorize
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Check out the scylla-bench repository
uses: actions/checkout@v2
with:
repository: scylladb/scylla-bench
path: scylla-bench
- name: Checkout GoCQL PR Repository
uses: actions/checkout@v2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
path: gocql
- name: Replace gocql with the PR version
run: |
cd scylla-bench
go mod edit -replace github.com/gocql/gocql=../gocql
go mod tidy
- name: Build and push Scylla-bench Docker Image
run: |
cd scylla-bench
export SCYLLA_BENCH_VERSION=tags/v0.1.9
export NAME="${{ github.event.pull_request.head.ref }}"
export SCYLLA_BENCH_DOCKER_IMAGE=scylladb/gocql-extended-ci:scylla-bench-${NAME}
docker build -f ../gocql/.github/workflows/Dockerfile . -t ${SCYLLA_BENCH_DOCKER_IMAGE} --build-arg version=$SCYLLA_BENCH_VERSION
docker push ${SCYLLA_BENCH_DOCKER_IMAGE}
- name: Trigger jenkins job
uses: mickeygoussetorg/trigger-jenkins-job@v1
with:
jenkins-server: "https://jenkins.scylladb.com"
jenkins-job: "scylla-staging/sylwia.szunejko/longevity-twcs-3h"
jenkins-username: "sylwiaszunejko"
jenkins-pat: ${{ secrets.JENKINS_TOKEN }}
poll-time: 90 # how often (seconds) to poll the jenkins server for results
timeout-value: 3600 # How long (seconds) to poll before timing out the action
verbose: true # true/false - turns on extra logging