Skip to content

Commit

Permalink
tilt ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sandipndev committed Feb 11, 2024
1 parent 5041f74 commit e7a033c
Show file tree
Hide file tree
Showing 8 changed files with 109 additions and 1 deletion.
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: tilt-ci

on: [push]

jobs:
tilt-ci-android:
name: Tilt CI Android
runs-on: ["self-hosted", "Linux", "X64"]

steps:
- uses: actions/checkout@v2
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Tilt CI
run: |
for i in {1..5}; do
echo "Tilt CI attempt $i"
nix develop -c make tilt-ci && exit 0 || sleep 60
done
exit 1
- name: Make sure init-setup has run (testing depends on it)
run: nix develop -c tilt wait --timeout 1h --for=condition=Ready uiresources init-setup
- name: Destroy backend
if: always()
continue-on-error: true
run: nix develop -c make tilt-down

# tilt-ci-ios:
# name: Tilt CI MacOS
# runs-on: ["self-hosted", "MacOS", "ARM64"]

# steps:
# - uses: actions/checkout@v2
# - uses: DeterminateSystems/magic-nix-cache-action@v2
# - name: Run local backend in background
# run: |
# nix develop -c echo "nix flake built"
# nix develop -c make tilt-up &
# echo $? > dev/.tilt-pid.tmp.ci
# sleep 5
# - name: Wait for backend to be ready
# run: nix develop -c tilt wait --timeout 1h --for=condition=Ready uiresources init-setup
# - name: Destroy backend
# if: always()
# continue-on-error: true
# run: |
# kill $(cat dev/.tilt-pid.tmp.ci) || true
# nix develop -c make tilt-down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ yalc.lock

*.log

.env
.dependencies
ios/assets
ios/GaloyApp/assets
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ tilt-up:

tilt-down:
cd dev && GALOY_QUICKSTART_PATH="dev/vendor/galoy-quickstart" tilt down

tilt-ci:
cd dev && GALOY_QUICKSTART_PATH="dev/vendor/galoy-quickstart" tilt ci
2 changes: 2 additions & 0 deletions dev/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALICE_PHONE="+919876540001"
BOB_PHONE="+919876540002"
18 changes: 18 additions & 0 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,21 @@ for service in bitcoin_services:

dc_resource('otel-agent', labels = ["otel"])
dc_resource('quickstart-test', labels = ['quickstart'], auto_init=False)

local_resource(
name='init-setup',
labels = ['dev-setup'],
cmd='bin/setup.sh',
resource_deps = galoy_services + [
"init-lightning"
]
)

# local_resource(
# name='blocks',
# labels = ['dev-setup'],
# cmd='bin/blocks.sh',
# resource_deps = [
# "init-setup"
# ]
# )
12 changes: 12 additions & 0 deletions dev/bin/blocks.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

set -e

REPO_ROOT=$(git rev-parse --show-toplevel)

source ${REPO_ROOT}/dev/vendor/galoy-quickstart/bin/helpers.sh

while true; do
bitcoin_cli -generate 1
sleep 2
done
25 changes: 25 additions & 0 deletions dev/bin/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

set -e

REPO_ROOT=$(git rev-parse --show-toplevel)

source ${REPO_ROOT}/dev/vendor/galoy-quickstart/bin/helpers.sh
source ${REPO_ROOT}/dev/.env

login_user "alice" "$ALICE_PHONE" "000000"
echo "alice logged in"
ALICE_TOKEN=$(read_value "alice")
receive_onchain
echo "alice funded"

login_user "alice" "$BOB_PHONE" "000000"
echo "bob logged in"
BOB_TOKEN=$(read_value "alice")
receive_onchain
echo "bob funded"

cat <<EOF > .env.tmp.ci
ALICE_TOKEN="$ALICE_TOKEN"
BOB_TOKEN="$BOB_TOKEN"
EOF
2 changes: 2 additions & 0 deletions dev/vendor/galoy-quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ services:
- OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-agent:4318
ports:
- 6685:6685
links:
- notifications-pg:notifications-pg
notifications-pg:
image: postgres:14.1
environment:
Expand Down

0 comments on commit e7a033c

Please sign in to comment.