Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/tap_integration_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Test GraphTally
on:
push:
pull_request:
branches: [main]

jobs:
# test job requires a full local testnet
# running, and it requires way more memory
# than what actions supports
# test:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
#
# - name: Set up Docker Buildx # Changed from "Set up Docker" for clarity
# uses: docker/setup-buildx-action@v2
#
# - name: Run make setup
# run: make setup
#
# - name: Run tests
# run: make rav_tests
#
# - name: Tear down containers
# if: always()
# run: make down
build_docker_images:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up QEMU # Useful for multi-platform builds
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx # Enhances docker build capabilities
uses: docker/setup-buildx-action@v2

# Login to a Docker registry is not needed if push: false and not pushing images
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
- name: Build indexer-service image with Docker Compose
run: docker compose -f contrib/docker-compose.yml build indexer-service

- name: Build tap-agent image with Docker Compose
run: docker compose -f contrib/docker-compose.yml build tap-agent
31 changes: 0 additions & 31 deletions .github/workflows/tap_integration_test.yml.disable

This file was deleted.

Loading