Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation of Node and Testnet #2

Merged
merged 8 commits into from Mar 28, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
155 changes: 154 additions & 1 deletion .github/workflows/pr.yml
Expand Up @@ -68,7 +68,7 @@ jobs:

- uses: EmbarkStudios/cargo-deny-action@v1

test:
unit-test:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Test
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -97,6 +97,159 @@ jobs:
command: test
args: --release

test-non-elevated-install-linux:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Install test non-elevated (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install binaries
shell: bash
run: |
cargo run -- client --version 0.74.2
cargo run -- node --version 0.80.3
cargo run -- testnet --version 0.1.4
- name: Check if safe is available in new shell session
shell: bash
run: |
# The installer adds this to the .bashrc file, but even though
# there's a new shell session for each step, the new bashrc isn't
# being sourced. Perhaps it's not a login shell or something. So
# unfortunately we need to explicitly source the env file. However,
# the test does prove that the env file modifies PATH correctly and
# that the installs of the binaries are available from their local
# locations.
source ~/.safe/env

[[ -f "$HOME/.safe/cli/safe" ]] || { echo "safe not in expected location"; exit 1; }
[[ -f "$HOME/.safe/node/safenode" ]] || { echo "safenode not in expected location"; exit 1; }
[[ -f "$HOME/.safe/node/testnet" ]] || { echo "testnet not in expected location"; exit 1; }

version=$(safe --version | awk '{ print $2 }')
if [[ "$version" == "0.74.2" ]]; then
echo "The correct version of safe has been installed"
else
echo "The correct version of safe has not been installed"
exit 1
fi

version=$(safenode --version | awk '{ print $2 }')
if [[ "$version" == "0.80.3" ]]; then
echo "The correct version of safenode has been installed"
else
echo "The correct version of safenode has not been installed"
exit 1
fi

version=$(testnet --version | awk '{ print $2 }')
if [[ "$version" == "0.1.4" ]]; then
echo "The correct version of testnet has been installed"
else
echo "The correct version of testnet has not been installed"
exit 1
fi

test-elevated-install-linux:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Install test elevated (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install binaries
shell: bash
run: |
cargo build --release
sudo ./target/release/safeup client --version 0.74.2
sudo ./target/release/safeup node --version 0.80.3
sudo ./target/release/safeup testnet --version 0.1.4

[[ -f "/usr/local/bin/safe" ]] || { echo "safe not in expected location"; exit 1; }
[[ -f "/usr/local/bin/safenode" ]] || { echo "safenode not in expected location"; exit 1; }
[[ -f "/usr/local/bin/testnet" ]] || { echo "testnet not in expected location"; exit 1; }

# Due to installation at /usr/local/bin, the binaries should be
# immediately available in the same shell session.
version=$(safe --version | awk '{ print $2 }')
if [[ "$version" == "0.74.2" ]]; then
echo "The correct version of safe has been installed"
else
echo "The correct version of safe has not been installed"
exit 1
fi

version=$(safenode --version | awk '{ print $2 }')
if [[ "$version" == "0.80.3" ]]; then
echo "The correct version of safenode has been installed"
else
echo "The correct version of safenode has not been installed"
exit 1
fi

version=$(testnet --version | awk '{ print $2 }')
if [[ "$version" == "0.1.4" ]]; then
echo "The correct version of testnet has been installed"
else
echo "The correct version of testnet has not been installed"
exit 1
fi

# On macOS you can only run elevated, so there is no non-elevated test.
test-elevated-install-macos:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Install test elevated (macOS)
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install binaries
shell: zsh {0}
run: |
cargo run -- client --version 0.74.2
cargo run -- node --version 0.80.3
cargo run -- testnet --version 0.1.4

[[ -f "/usr/local/bin/safe" ]] || { echo "safe not in expected location"; exit 1; }
[[ -f "/usr/local/bin/safenode" ]] || { echo "safenode not in expected location"; exit 1; }
[[ -f "/usr/local/bin/testnet" ]] || { echo "testnet not in expected location"; exit 1; }

version=$(safe --version | awk '{ print $2 }')
if [[ "$version" == "0.74.2" ]]; then
echo "The correct version of safe has been installed"
else
echo "The correct version of safe has not been installed"
exit 1
fi

version=$(safenode --version | awk '{ print $2 }')
if [[ "$version" == "0.80.3" ]]; then
echo "The correct version of safenode has been installed"
else
echo "The correct version of safenode has not been installed"
exit 1
fi

version=$(testnet --version | awk '{ print $2 }')
if [[ "$version" == "0.1.4" ]]; then
echo "The correct version of testnet has been installed"
else
echo "The correct version of testnet has not been installed"
exit 1
fi

test-publish:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Test Publish
Expand Down
7 changes: 6 additions & 1 deletion Cargo.toml
Expand Up @@ -13,10 +13,15 @@ color-eyre = "0.6.2"
dirs-next = "2.0.0"
flate2 = "1.0"
indicatif = "0.17.3"
reqwest = { version = "0.11", features = ["json"] }
indoc = "2.0.1"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tar = "0.4"
tokio = { version = "1.26", features = ["full"] }

[target.'cfg(unix)'.dependencies]
users = "0.11"

[dev-dependencies]
Expand Down
118 changes: 118 additions & 0 deletions resources/default_bashrc
@@ -0,0 +1,118 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoredups

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=100000
HISTFILESIZE=100000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi

if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'

alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
source ~/.cargo/env