-
Notifications
You must be signed in to change notification settings - Fork 113
85 lines (78 loc) · 2.89 KB
/
feature-network-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Feature network deploy
on:
workflow_dispatch:
inputs:
snapshotUrl:
description: 'Custom snapshot URL:'
required: false
default: ""
remoteDebugging:
description: 'Enable debugger (0/1):'
required: true
default: "0"
jobs:
deploy:
environment: feature
runs-on: ubuntu-latest
env:
DOCKER_BUILDKIT: 1
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: '${{ secrets.IOTALEDGERTESTING_HUB_DOCKER_LOGIN }}'
password: '${{ secrets.IOTALEDGERTESTING_HUB_DOCKER_PASSWORD }}'
- name: Publish to Docker Hub
uses: docker/build-push-action@v3
with:
tags: iotaledgertesting/goshimmer:feature
push: true
build-args: |
CUSTOM_SNAPSHOT_URL=${{github.event.inputs.snapshotUrl}}
DEFAULT_SNAPSHOT_URL=https://dbfiles-goshimmer.s3.eu-central-1.amazonaws.com/snapshots/feature/snapshot.bin
REMOTE_DEBUGGING=${{github.event.inputs.remoteDebugging}}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
- name: Install SSH Key
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh/
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
sudo chmod 600 ~/.ssh/id_ed25519
echo '
Host *
StrictHostKeyChecking no
UserKnownHostsFile=/dev/null
' > ~/.ssh/config
- name: Ansible deploy
env:
GOSHIMMER_SEEDS: '${{ secrets.GOSHIMMER_SEEDS }}'
GRAFANA_ADMIN_PASSWORD: '${{ secrets.GRAFANA_ADMIN_PASSWORD }}'
ELK_ELASTIC_PASSWORD: '${{ secrets.ELK_ELASTIC_PASSWORD }}'
ELK_ELASTIC_USER: '${{ secrets.ELK_ELASTIC_USER }}'
COMMIT_SHA: '${{ github.sha }}'
GOSHIMMER_DOCKER_IMAGE: 'iotaledgertesting/goshimmer'
GOSHIMMER_DOCKER_TAG: 'feature'
SLACK_NOTIFICATION_WEBHOOK: '${{ secrets.SLACK_NOTIFICATION_WEBHOOK }}'
run: |
export NETWORK_VERSION=$((16#$(git rev-parse --short "$COMMIT_SHA")%1000000000+1000))
./deploy/ansible/run.sh feature.yml