Skip to content

Commit

Permalink
do not run systemd dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim Fehrs committed Sep 20, 2023
1 parent 87b5d7c commit 98da1e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ jobs:
- name: Run systemd dependencies
run: |
chmod +x ./babylonnode
./babylonnode systemd dependencies
echo "expecting the dependencies to be already installed"
# ./babylonnode systemd dependencies
echo "expecting the dependencies to be already installed. Since the dependency command is interactive"
- name: Run systemd config
run: |

Check warning on line 331 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L331

shellcheck reported issue in this script: SC2086:info:5:6: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:331:9: shellcheck reported issue in this script: SC2086:info:5:6: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 331 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L331

shellcheck reported issue in this script: SC2086:info:11:43: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:331:9: shellcheck reported issue in this script: SC2086:info:11:43: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 331 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L331

shellcheck reported issue in this script: SC2086:info:10:7: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:331:9: shellcheck reported issue in this script: SC2086:info:10:7: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 331 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L331

shellcheck reported issue in this script: SC2086:info:9:6: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:331:9: shellcheck reported issue in this script: SC2086:info:9:6: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 331 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L331

shellcheck reported issue in this script: SC2086:info:6:6: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:331:9: shellcheck reported issue in this script: SC2086:info:6:6: Double quote to prevent globbing and word splitting [shellcheck]
chmod +x ./babylonnode
Expand Down Expand Up @@ -619,6 +619,8 @@ jobs:
NETWORK_NAME: ${{ vars.NETWORK_NAME }}

Check warning on line 619 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L619

undefined variable "vars". available variables are "env", "github", "inputs", "job", "matrix", "needs", "runner", "secrets", "steps", "strategy" [expression]
Raw output
.github/workflows/ci.yml:619:29: undefined variable "vars". available variables are "env", "github", "inputs", "job", "matrix", "needs", "runner", "secrets", "steps", "strategy" [expression]

experiment-userflow-docker-core-gateway-same-host:
# Disabled for now
if: ${{ false }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down
1 change: 0 additions & 1 deletion node-runner-cli/setup/BaseSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def dependencies():
logger.info("Docker successfully installed")
run_shell_command('sudo apt install -y wget unzip rng-tools ansible', shell=True)
run_shell_command('sudo rngd -r /dev/random | true', shell=True)

try:
ansible_dir = f'https://raw.githubusercontent.com/radixdlt/babylon-nodecli/{Helpers.cli_version()}/node-runner-cli'
AnsibleRunner(ansible_dir).check_install_ansible(False)
Expand Down

0 comments on commit 98da1e9

Please sign in to comment.