Skip to content

Commit

Permalink
Update test in github actions and enable mingw32 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kubo committed Jun 4, 2023
1 parent 3a78426 commit ee88a11
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
submodules: true
- name: Install packages
run: |
sudo apt install -y gcc-multilib g++-multilib
sudo apt-get update
sudo apt-get install -y gcc-multilib g++-multilib
- name: x86_64 tests on Ubuntu
run: |
./.ci/run-cmake-test.sh x86_64-linux
Expand Down Expand Up @@ -89,11 +90,11 @@ jobs:
submodules: true
- name: Install packages
run: |
sudo apt install -y g++-mingw-w64-x86-64 g++-mingw-w64-i686 wine64 wine-binfmt
sudo apt-get install -y g++-mingw-w64-x86-64 g++-mingw-w64-i686 wine64 wine-binfmt
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install -y wine32
sudo update-binfmts --import wine
sudo apt-get update
sudo apt-get install -y libgcc-s1:i386 libstdc++6:i386 wine32
sudo apt-get remove mono-runtime
- name: x64 tests on Wine
run: |
./.ci/run-cmake-test.sh x86_64-mingw32 -DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.cmake
Expand Down

0 comments on commit ee88a11

Please sign in to comment.