Skip to content

Commit f47d411

Browse files
committed
remove shell checks
Signed-off-by: Oleg <97077423+RobotSail@users.noreply.github.com>
1 parent d1e673c commit f47d411

File tree

2 files changed

+1
-25
lines changed

2 files changed

+1
-25
lines changed

.github/workflows/validate-ipfs.yaml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ jobs:
2020
runs-on: ubuntu-20.04
2121

2222
steps:
23-
- name: Check shell
24-
run: |
25-
# get the current shell
26-
27-
current_shell() {
28-
currentShell=$(readlink /proc/"${$}"/exe)
29-
printf "using shell: %s\n" "${currentShell}"
30-
version=$("${currentShell}" --version)
31-
printf "shell version: %s\n" "${version}"
32-
}
33-
current_shell
3423
- name: Checkout source
3524
uses: actions/checkout@v2
3625

@@ -135,17 +124,6 @@ jobs:
135124
- name: run e2e tests
136125
shell: bash
137126
run: |
138-
# get the current shell
139-
current_shell() {
140-
currentShell=$(readlink /proc/"${$}"/exe)
141-
printf "using shell: %s\n" "${currentShell}"
142-
version=$("${currentShell}" --version)
143-
printf "shell version: %s\n" "${version}"
144-
}
145-
current_shell
146-
147-
printf "########################################\navailable shells:\n%s\n" "$(cat /etc/shells)"
148-
149127
mkdir bin
150128
make test-e2e
151129

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Ensure that make is using bash
2-
SHELL := /bin/bash
3-
1+
# set binary versions
42
GOLANGCI_VERSION := v1.46.1
53
HELM_VERSION := v3.8.2
64
KUTTL_VERSION := 0.10.0

0 commit comments

Comments
 (0)