cocoaui: Added selection properties widget #191
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Linux Debug Build | |
| on: [ push, pull_request ] | |
| jobs: | |
| build_linux: | |
| name: Linux Debug Build | |
| runs-on: ubuntu-latest | |
| container: ubuntu:20.04 | |
| steps: | |
| - name: Install dependencies for Linux | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| run: | | |
| apt-get -qq update | |
| apt-get install -y -qq autopoint automake autoconf intltool libc6-dev yasm libglib2.0-bin perl wget zip bzip2 make libtool pkg-config fakeroot clang openssh-client rsync libglib2.0-dev-bin git | |
| - name: Checkout for Linux | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # - name: Fetch static-deps | |
| # run: ci_scripts/download-linux-static-deps.sh | |
| - name: Fetch static-deps | |
| uses: dawidd6/action-download-artifact@v6 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| repo: DeaDBeeF-Player/deadbeef-staticdeps | |
| workflow: linuxbuild.yml | |
| name: ddb-static-deps-latest.tar.bz2 | |
| branch: master | |
| - name: Unpack static-deps | |
| run: | | |
| mkdir -p static-deps | |
| tar jxf ddb-static-deps-latest.tar.bz2 -C static-deps | |
| - name: Run Tests | |
| run: scripts/test.sh | |
| - name: Build for Linux | |
| run: BUILD_OS_NAME=linux ci_scripts/build.sh --debug | |
| - name: Upload for Linux | |
| env: | |
| gh_ed25519_key: ${{ secrets.GH_ENCRYPTED_ED25519_KEY }} | |
| gh_ed25519_iv: ${{ secrets.GH_ENCRYPTED_ED25519_IV }} | |
| run: BUILD_OS_NAME=linux ci_scripts/upload.sh --debug | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: linux-debug | |
| # todo: rename and upload only one artifact (the build) | |
| path: portable_out/build/*.tar.bz2 | |