Skip to content

Fix failing go-dbhub CI test #153

Fix failing go-dbhub CI test

Fix failing go-dbhub CI test #153

Workflow file for this run

name: "go-dbhub library"
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
jobs:
build:
runs-on: [self-hosted, linux, x64, jc]
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Install NodeJS 20
uses: actions/setup-node@v4
with:
node-version: 20
# Build and start the DBHub.io daemons
- name: Checkout repository
uses: actions/checkout@v4
with:
path: daemons
- name: Build the DBHub.io daemons
run: cd daemons; sh ./build_dbhub_docker_and_local.sh
- name: Update the daemon config file
run: cd daemons; sed -i 's/bind_address = ":9443"/bind_address = "0.0.0.0:9443"/' docker/config.toml
- name: Start the DBHub.io daemons
run: cd daemons; docker run -itd --rm --name dbhub-build --net host dbhub-build:latest && sleep 30
- name: Display open ports
run: netstat -nltp
- name: Manually seed the database
run: curl -k https://localhost:9443/x/test/seed
# Build and test the go-dbhub library
- name: Checkout go-dbhub library source code
uses: actions/checkout@v4
with:
repository: 'sqlitebrowser/go-dbhub'
path: library
- name: Set up Go for go-dbhub library
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build the go-dbhub library
run: cd library; go build -v
- name: Test the go-dbhub library
run: cd library; go test -v