Update mdx2midi, mdx2opm and pdx2sf2 #72
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 Build | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install packages | |
| run: sudo apt-get install -y portaudio19-dev libsndfile1-dev | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: make | |
| run: make | |
| - name: Set outputs | |
| id: vars | |
| run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
| - name: Upload build artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: mdxtools-${{steps.vars.outputs.sha_short}} | |
| path: | | |
| adpcm-decode | |
| adpcm-encode | |
| mdx2midi | |
| mdx2mml | |
| mdx2opm | |
| mdxdump | |
| mdxinfo | |
| mdxplay | |
| mdx2pcm | |
| mkpdx | |
| mml2mdx | |
| pdx2sf2 | |
| pdx2wav | |
| pdxinfo |