Skip to content

Commit 18a7c22

Browse files
committed
ci: Update newt to r0.52.25
Requires to preserve the env during installation and adjusting the link path as the newt is now installing into dist-packages. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
1 parent 5c8a5df commit 18a7c22

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/perform-tests/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ runs:
3434
autoreconf -fi
3535
./configure --with-python=python${{ matrix.python-version }}
3636
make -j $(nproc)
37-
sudo make install
38-
ln -s /usr/local/lib/python${{ matrix.python-version }}/site-packages/_snack.so \
37+
sudo -E make install
38+
ln -sv /usr/local/lib/python${{ matrix.python-version }}/dist-packages/_snack.so \
3939
$(python3 -c 'import site; print(site.getsitepackages()[0])')/
40-
ln -s /usr/local/lib/python${{ matrix.python-version }}/site-packages/snack.py \
40+
ln -sv /usr/local/lib/python${{ matrix.python-version }}/dist-packages/snack.py \
4141
$(python3 -c 'import site; print(site.getsitepackages()[0])')/
4242
- name: Run offline tests
4343
shell: bash

.github/workflows/next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
env:
1111
SHELLCHECK_VERSION: v0.10.0
1212
SHELLCHECK_SHA256: 6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87
13-
NEWT_REVISION: 5f2762040505edd7a25878fe27a00a2d34485663 # r0.52.24
13+
NEWT_REVISION: 9b9e7e8936f51f83a7259c5f0a9b4ff909cbd39a # r0.52.25
1414

1515
jobs:
1616
codestyle:

0 commit comments

Comments
 (0)