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.
 
 
 
 
 

31 lines
676 B

  1. name: x86 Win Debug
  2. on:
  3. push:
  4. branches:
  5. - devel
  6. env:
  7. BUILD_TYPE: Debug
  8. jobs:
  9. build:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: Install dependencies
  14. # The user does not run as root
  15. run: sudo apt install wget cmake make mingw-w64 git unzip libsndfile-dev
  16. - name: Run build script
  17. shell: bash
  18. working-directory: ${{runner.workspace}}
  19. run: cd $GITHUB_WORKSPACE && ./build_windows.sh $BUILD_TYPE
  20. - name: Upload compilied binary
  21. uses: actions/upload-artifact@v2
  22. with:
  23. name: Debug build
  24. path: ${{runner.workspace}}/aptdec/winbuild/aptdec-1.7.0.zip