fixed folders and file changes on distributed cache #788
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-main-dataplane | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
# Service containers to run with `container-job` | |
services: | |
# Label used to access the service container | |
postgres: | |
# Docker Hub image | |
image: timescale/timescaledb:latest-pg15 | |
# Provide the password for postgres | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: "Hello123!" | |
POSTGRES_DB: "dataplane" | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
redis-service: | |
image: redis:7.2-alpine | |
ports: | |
- 6379:6379 | |
nats: | |
image: nats:2.9-scratch | |
ports: | |
- 4222:4222 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21 | |
# Get values for cache paths to be used in later steps | |
- id: go-cache-paths | |
name: Github Actions Environment Variables | |
run: | | |
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_ENV" | |
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_ENV" | |
echo "DP_VERSION=v0.0.0" >> "$GITHUB_ENV" | |
- name: ENV Version Test - version = ${{ env.DP_VERSION }} | |
run: | | |
echo release: $DP_VERSION | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# Cache go build cache, used to speedup go test | |
- name: Go Build Cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ env.go-build }} | |
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
# Cache go mod cache, used to speedup builds | |
- name: Go Mod Cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ env.go-mod }} | |
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} | |
- name: Create file directory | |
run: echo ${{ github.workspace }}/appdev/code-files/ && mkdir -p ${{ github.workspace }}/appdev/code-files/ | |
- name: Run Go Tests | |
env: | |
DP_DB_HOST: localhost | |
DP_DB_USER: postgres | |
DP_DB_SSL: "disable" | |
DP_DB_PORT: "5432" | |
DP_DB_DATABASE: "dataplane" | |
secret_db_pwd: "Hello123!" | |
DP_DATABASE: "timescaledb" | |
DP_MODE: "development" | |
DP_DEBUG: "true" | |
DP_DB_DEBUG: "false" | |
DP_MQ_DEBUG: "true" | |
DP_METRIC_DEBUG: "false" | |
DP_SCHEDULER_DEBUG: "true" | |
DP_WORKER_HEARTBEAT_SECONDS: "1" | |
DP_WORKER_GROUP: "python_1" | |
DP_WORKER_CMD: "/bin/bash" | |
DP_WORKER_TYPE: "vm" | |
DP_WORKER_LB: "roundrobin" | |
DP_WORKER_ENV: "Development" | |
DP_CLEANTASKS_DAYS: "60" | |
DP_REMOVELOGS_DAYS: "60" | |
DP_CODE_FOLDER: "${{ github.workspace }}/appdev/code-files/" | |
DP_CODE_FILE_STORAGE: "Database" | |
DP_DFS_CODE_FOLDER: "${{ github.workspace }}/appdev/dfs-code-files/" | |
DP_REDIS_HOST: "localhost" | |
DP_REDIS_PORT: "6379" | |
DP_REDIS_PASSWORD: "" | |
DP_REDIS_DB: "0" | |
run: cd app/mainapp && time go run Tests/mainTest.go |