Skip to content

Commit

Permalink
run-tests.yml: Start using bubblewrap >=0.9.0 of Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Dec 20, 2024
1 parent 2a953fb commit a33b96f
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
sudo apt-get update
sudo apt-get install --no-install-recommends --yes -V \
apparmor-profiles \
bubblewrap \
libcap-dev \
python3-pip \
wget \
Expand Down Expand Up @@ -73,24 +74,6 @@ jobs:
tar vtf dist/sandwine-*.tar.gz
unzip -l dist/sandwine-*.whl
- name: Install recent-enough Bubblewrap
run: |
bubble_wrap_version=0.8.0
bubble_wrap_sha256sum=957ad1149db9033db88e988b12bcebe349a445e1efc8a9b59ad2939a113d333a
set -x -u
wget https://github.com/containers/bubblewrap/releases/download/v${bubble_wrap_version}/bubblewrap-${bubble_wrap_version}.tar.xz
sha256sum -c <(echo "${bubble_wrap_sha256sum} *bubblewrap-${bubble_wrap_version}.tar.xz")
tar xf bubblewrap-${bubble_wrap_version}.tar.xz
cd bubblewrap-${bubble_wrap_version}
./configure
make -j$(nproc)
sudo make install
[[ "$(bwrap --version)" = "bubblewrap ${bubble_wrap_version}" ]]
- name: Install sandwine
run: |
set -x -u
Expand Down

0 comments on commit a33b96f

Please sign in to comment.