2023-09-08 03:15:47 +02:00
|
|
|
name: Self-Hosting Docker Compose Tests
|
2022-11-06 07:34:57 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 06:23:22 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-06 07:34:57 +01:00
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 1.18
|
2023-09-08 03:51:13 +02:00
|
|
|
- name: Docker Compose setup
|
2022-11-06 07:34:57 +01:00
|
|
|
if: ${{ !startsWith(github.event.head_commit.message, 'Release') }}
|
|
|
|
run: |
|
2023-09-08 03:15:47 +02:00
|
|
|
set -euo pipefail
|
2022-11-06 07:34:57 +01:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y zsh fish
|
|
|
|
curl -fsSL https://get.docker.com | sudo sh
|
2023-09-08 03:51:13 +02:00
|
|
|
sudo chmod 0755 -R /usr/share/zsh/ # Work around a weird bug where zsh on ubuntu actions gives that diretory 0777 which makes zsh refuse to start
|
2022-11-06 07:34:57 +01:00
|
|
|
sudo hostname ghaction-runner-hostname # Set a consistent hostname so we can run tests that depend on it
|
|
|
|
docker compose -f backend/server/docker-compose.yml build
|
2022-11-06 08:17:52 +01:00
|
|
|
docker compose -f backend/server/docker-compose.yml up -d
|
2022-11-06 07:34:57 +01:00
|
|
|
export HISHTORY_SERVER=http://localhost
|
|
|
|
go build
|
|
|
|
./hishtory install
|
2023-09-08 03:51:13 +02:00
|
|
|
- name: Docker Compose test
|
2023-09-08 07:37:41 +02:00
|
|
|
shell: bash -ileo pipefail {0}
|
2023-09-08 03:51:13 +02:00
|
|
|
if: ${{ !startsWith(github.event.head_commit.message, 'Release') }}
|
|
|
|
run: |
|
|
|
|
set -euo pipefail
|
|
|
|
export HISHTORY_SERVER=http://localhost
|
2022-11-06 23:20:45 +01:00
|
|
|
source ~/.bashrc
|
2023-09-08 03:15:47 +02:00
|
|
|
# Record a command that we'll check was persisted
|
|
|
|
ls -Slah /
|
|
|
|
# Assert that the entry is syncing properly
|
2023-09-08 03:29:24 +02:00
|
|
|
./hishtory status -v | grep 'Sync Status: Synced'
|
2023-09-08 03:15:47 +02:00
|
|
|
# Check that hishtory query runs without errors
|
2023-09-08 03:29:24 +02:00
|
|
|
./hishtory query
|
2023-09-08 03:15:47 +02:00
|
|
|
# Check that hishtory export recorded the above ls command
|
2023-09-08 07:12:41 +02:00
|
|
|
./hishtory export | grep "ls -Slah /"
|
|
|
|
- name: Setup tmate session
|
|
|
|
if: ${{ failure() }}
|
|
|
|
uses: mxschmitt/action-tmate@v3
|
|
|
|
with:
|
|
|
|
limit-access-to-actor: true
|