Dm/clean up test directories (#145) #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
V_HOST: localhost | |
V_PORT: 5433 | |
V_USER: dbadmin | |
V_DATABASE: VMart | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
#node: ['8', '10', '12', '14', '16', '17'] | |
#os: [ubuntu-latest, windows-latest, macos-latest] | |
# let's make it a little bit simple for now | |
# current minimal version will be 12. | |
# TODO: investigate the multipe version matrix with single Vertica instance | |
node: ['12', '13', '14', '15', '16', '17'] | |
os: [ubuntu-latest] | |
name: Node.js ${{ matrix.node }} (${{ matrix.os }}) | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: build | |
run: yarn | |
- name: boostrap | |
run: yarn lerna bootstrap | |
- name: Setup Vertica | |
timeout-minutes: 15 | |
run: | | |
docker run -d -p 5433:5433 -p 5444:5444 \ | |
--mount type=volume,source=vertica-data,target=/data \ | |
--name vertica_ce \ | |
opentext/vertica-ce:24.2.0-1 | |
echo "Vertica startup ..." | |
until docker exec vertica_ce test -f /data/vertica/VMart/agent_start.out; do \ | |
echo "..."; \ | |
sleep 3; \ | |
done; | |
echo "Vertica is up" | |
docker exec -u dbadmin vertica_ce /opt/vertica/bin/vsql -c "\l" | |
docker exec -u dbadmin vertica_ce /opt/vertica/bin/vsql -c "select version()" | |
- name: test-v-connection-string | |
if: always() | |
run: | | |
cd packages/v-connection-string | |
yarn test | |
- name: test-v-pool | |
if: always() | |
run: | | |
cd packages/v-pool | |
yarn test | |
- name: test-v-protocol | |
if: always() | |
run: | | |
cd packages/v-protocol | |
yarn test | |
- name: test-vertica-nodejs | |
if: always() | |
run: | | |
cd packages/vertica-nodejs | |
yarn test |