Skip to content

Commit

Permalink
Add Build and Test GHA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSnowden committed Jul 6, 2023
1 parent db8b67a commit f29a0fa
Showing 1 changed file with 358 additions and 0 deletions.
358 changes: 358 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,358 @@
# This file contains a GitHub Actions port of the following Buildkite Pipeline:
#steps:
# - label: ":golang: build"
# agents:
# queue: "default"
# docker: "*"
# command: "make ci-build"
# plugins:
# - docker-compose#v3.8.0:
# run: build
# config: ./develop/buildkite/docker-compose.yml
#
# - wait
#
# - label: ":golang: unit test"
# agents:
# queue: "default"
# docker: "*"
# command: "make unit-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# plugins:
# - docker-compose#v3.8.0:
# run: build
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: integration test"
# agents:
# queue: "default"
# docker: "*"
# command: "make integration-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# plugins:
# - docker-compose#v3.8.0:
# run: db-integration-test
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with cassandra"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-cassandra
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with cassandra (ES8)"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-cassandra
# config: ./develop/buildkite/docker-compose-es8.yml
#
# # TODO(rodrigozhou): olivere client is incompatible with OpenSearch PIT
# # - label: ":golang: functional test with cassandra (OpenSearch 2)"
# # agents:
# # queue: "default"
# # docker: "*"
# # command: "make functional-test-coverage"
# # artifact_paths:
# # - ".coverage/*.out"
# # retry:
# # automatic:
# # limit: 1
# # plugins:
# # - docker-compose#v3.8.0:
# # run: integration-test-cassandra
# # config: ./develop/buildkite/docker-compose-os2.yml
#
# - label: ":golang: functional xdc test with cassandra"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-xdc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-cassandra
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional ndc test with cassandra"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-ndc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-cassandra
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with mysql"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-mysql
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional xdc test with mysql"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-xdc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-mysql
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional ndc test with mysql"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-ndc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-mysql
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with mysql 8"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-mysql8
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional xdc test with mysql 8"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-xdc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-mysql8
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional ndc test with mysql 8"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-ndc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-mysql8
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with postgresql"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-postgresql
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional xdc test with postgresql"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-xdc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-postgresql
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional ndc test with postgresql"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-ndc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-postgresql
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with postgresql 12"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-postgresql12
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional xdc test with postgresql 12"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-xdc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-postgresql12
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional ndc test with postgresql 12"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-ndc-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-xdc-postgresql12
# config: ./develop/buildkite/docker-compose.yml
#
# - label: ":golang: functional test with sqlite"
# agents:
# queue: "default"
# docker: "*"
# command: "make functional-test-coverage"
# artifact_paths:
# - ".coverage/*.out"
# retry:
# automatic:
# limit: 1
# plugins:
# - docker-compose#v3.8.0:
# run: integration-test-sqlite
# config: ./develop/buildkite/docker-compose.yml
#
# - wait
#
# - label: ":coverage: coverage-report"
# agents:
# queue: "default"
# docker: "*"
# command: "./develop/buildkite/scripts/coverage-report.sh"
# artifact_paths:
# - ".coverage/summary.out"
# - ".coverage/summary.out.html"
# retry:
# automatic:
# limit: 2
# plugins:
# - docker-compose#v3.8.0:
# run: coverage-report
# config: ./develop/buildkite/docker-compose.yml
#

name: Build and Test
on:
push:
permissions:
contents: read
checks: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: isbang/[email protected]
with:
compose-file: "develop/buildkite/docker-compose.yml"
services: build
unit_test:
name: Unit Test
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: isbang/[email protected]
with:
compose-file: "develop/buildkite/docker-compose.yml"
services: build
- name: Unit Test
run: make unit-test-coverage

0 comments on commit f29a0fa

Please sign in to comment.