mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
62 lines
1.9 KiB
YAML
62 lines
1.9 KiB
YAML
name: Docker CI
|
|
|
|
# If we need support more OS refer to
|
|
# https://github.com/tuono-labs/tuono/pull/332#issuecomment-2614439692
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
build_and_test:
|
|
name: Build and Test Docker Image on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 15
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Run Docker Compose
|
|
run: |
|
|
docker compose -f docker/compose.yml up --build -d
|
|
|
|
- name: Check if the container is running
|
|
run: |
|
|
docker ps --filter "name=tuono-source-container" --format "table {{.Names}}\t{{.Status}}"
|
|
if ! docker ps --filter "name=tuono-source-container" --format "{{.Status}}" | grep -q "Up"; then
|
|
echo "Error: Container 'tuono-source-container' is not running."
|
|
exit 1
|
|
fi
|
|
|
|
- name: Check commands inside container
|
|
run: |
|
|
docker exec tuono-source-container pnpm --version || { echo "Error: pnpm is not available."; exit 1; }
|
|
docker exec tuono-source-container tuono --version || { echo "Error: tuono is not available."; exit 1; }
|
|
|
|
- name: Run cargo test
|
|
run: docker exec tuono-source-container cargo test
|
|
|
|
- name: Install node dependencies in each tuono's sub-projets
|
|
run: docker exec tuono-source-container bash -c 'for dir in /tuono/packages/*; do [ -d "$dir" ] && (cd "$dir" && yes | pnpm install --frozen-lockfile); done'
|
|
|
|
- name: Run pnpm test
|
|
run: docker exec tuono-source-container pnpm test
|
|
|
|
- name: Tear Down Docker Compose
|
|
if: always()
|
|
run: |
|
|
docker compose -f docker/compose.yml down --volumes
|