Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wine.yml 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. name: wine
  2. on:
  3. push:
  4. branches:
  5. - '*'
  6. pull_request:
  7. branches:
  8. - '*'
  9. env:
  10. DEBIAN_FRONTEND: noninteractive
  11. HOMEBREW_NO_AUTO_UPDATE: 1
  12. jobs:
  13. ubuntu-18_04:
  14. runs-on: ubuntu-18.04
  15. env:
  16. WINECC: winegcc-stable
  17. WINEDEBUG: "-all"
  18. steps:
  19. - uses: actions/checkout@v2
  20. - name: Set up dependencies
  21. run: |
  22. sudo dpkg --add-architecture i386
  23. sudo apt-get update -qq
  24. sudo apt-get install -yq g++-multilib pkg-config wine-stable wine64-tools
  25. sudo apt-get install -yq binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 g++-mingw-w64-i686 g++-mingw-w64-x86-64 mingw-w64
  26. #- name: make wine32
  27. #run: make wine32 -j $(nproc)
  28. - name: make wine64
  29. run: make wine64 -j $(nproc)
  30. - name: make win32 CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++
  31. run: make win32 CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ -j $(nproc)
  32. - name: make win64 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++
  33. run: make win64 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ -j $(nproc)
  34. - name: make plugin-wine
  35. run: make plugin-wine -j $(nproc)
  36. - name: make plugin-wine CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++
  37. run: make plugin-wine CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ -j $(nproc)
  38. ubuntu-20_04:
  39. runs-on: ubuntu-20.04
  40. env:
  41. WINECC: winegcc-stable
  42. WINEDEBUG: "-all"
  43. steps:
  44. - uses: actions/checkout@v2
  45. - name: Set up dependencies
  46. run: |
  47. sudo dpkg --add-architecture i386
  48. sudo apt-get update -qq
  49. sudo apt-get install -yq g++-multilib pkg-config wine-stable wine64-tools
  50. sudo apt-get install -yq binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 g++-mingw-w64-i686 g++-mingw-w64-x86-64 mingw-w64
  51. #- name: make wine32
  52. #run: make wine32 -j $(nproc)
  53. - name: make wine64
  54. run: make wine64 -j $(nproc)
  55. - name: make win32 CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++
  56. run: make win32 CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ -j $(nproc)
  57. - name: make win64 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++
  58. run: make win64 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ -j $(nproc)
  59. - name: make plugin-wine
  60. run: make plugin-wine -j $(nproc)
  61. - name: make plugin-wine CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++
  62. run: make plugin-wine CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ -j $(nproc)