Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nic11 committed Dec 22, 2024
1 parent f646e77 commit ed791a6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pr-ubuntu-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,16 @@ jobs:
- name: Debug - print env
run: env

- name: Get image to build upon
- name: Get/build image to use for building & testing
run: |
set -x # print executed commands
cat ${{github.workspace}}/misc/github_env_linux >> "$GITHUB_ENV"
echo Some debug data
id
uname -a
lsb_release -a
# cat ${{github.workspace}}/misc/github_env_linux >> "$GITHUB_ENV"
# get base image for this distro (or build configuration, in case with skymp-deps)
base_image="`misc/deps_linux/${{ matrix.base_system }}.sh --get-image-uri`"
Expand Down
3 changes: 3 additions & 0 deletions misc/deps_linux/archlinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ if [[ "$1" == "--ensure-deps-noninteractive" ]]; then
echo "This isn't CI environment! Are you sure you didn't want to use just --ensure-deps?"
exit 1
fi
set -x
PACMAN_ARGS="--noconfirm"
pacman -Syu $PACMAN_ARGS sudo
useradd -m skymp
chown -R skymp:skymp /src

cat /etc/passwd

DO_ENSURE_DEPS=1
fi

Expand Down

0 comments on commit ed791a6

Please sign in to comment.