Skip to content

Commit 4650ea2

Browse files
committed
TO REMOVE
1 parent 12f7eea commit 4650ea2

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
kubectl get storageclass standard
3838
3939
test-with-custom-resource-limits:
40-
runs-on: macos-latest
40+
runs-on: macos-13
4141
steps:
4242
- name: Checkout
4343
uses: actions/checkout@v1

registry.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,23 @@ parse_command_line() {
176176
install_docker() {
177177
if [ "$RUNNER_OS" == "macOS" ] && ! [ -x "$(command -v docker)" ]; then
178178
set +e
179+
cat /etc/hosts
180+
#echo -e "$(ipconfig getifaddr en0) $(hostname -f) $(hostname -s)" | sudo tee -a /etc/hosts
181+
#echo `sudo lsof -PiTCP -sTCP:LISTEN`
179182
echo 'Installing docker...'
180183
brew install docker docker-buildx colima
181184
mkdir -p ~/.docker/cli-plugins
182185
ln -sfn /usr/local/opt/docker-buildx/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx
186+
chmod +x ~/.docker/cli-plugins/docker-buildx
187+
echo 'colima start --help'
188+
colima start --help
183189
colima start
190+
echo '*** check logs serialv'
191+
cat /Users/runner/.colima/_lima/colima/serialv.log
192+
echo '*** check logs stdout'
193+
cat /Users/runner/.colima/_lima/colima/ha.stdout.log
194+
echo '*** check logs stderr'
195+
cat /Users/runner/.colima/_lima/colima/ha.stderr.log
184196
set -e
185197
fi
186198
}

0 commit comments

Comments
 (0)