Include libyabridge-vst3.so in the build artifacts

This commit is contained in:
Robbert van der Helm
2020-12-19 13:23:53 +01:00
parent a197ad897c
commit 95b30b069e
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -53,7 +53,7 @@ jobs:
- name: Create an archive for the binaries - name: Create an archive for the binaries
run: | run: |
mkdir yabridge mkdir yabridge
cp build/libyabridge-vst2.so build/yabridge-{host,group}{,-32}.exe{,.so} yabridge cp build/libyabridge-vst{2,3}.so build/yabridge-{host,group}{,-32}.exe{,.so} yabridge
cp CHANGELOG.md README.md yabridge cp CHANGELOG.md README.md yabridge
tar -caf "$ARCHIVE_NAME" yabridge tar -caf "$ARCHIVE_NAME" yabridge
@@ -92,7 +92,7 @@ jobs:
- name: Create an archive for the binaries - name: Create an archive for the binaries
run: | run: |
mkdir yabridge mkdir yabridge
cp build/libyabridge-vst2.so build/yabridge-{host,group}{,-32}.exe{,.so} yabridge cp build/libyabridge-vst{2,3}.so build/yabridge-{host,group}{,-32}.exe{,.so} yabridge
cp CHANGELOG.md README.md yabridge cp CHANGELOG.md README.md yabridge
tar -caf "$ARCHIVE_NAME" yabridge tar -caf "$ARCHIVE_NAME" yabridge
+1 -2
View File
@@ -24,7 +24,6 @@ incomplete list of things that still have to be done before this can be used:
- All other optional interfaces - All other optional interfaces
- Fully implemented: see [this - Fully implemented: see [this
document](https://github.com/robbert-vdh/yabridge/tree/feature/vst3/src/common/serialization/vst3/README.md) document](https://github.com/robbert-vdh/yabridge/tree/feature/vst3/src/common/serialization/vst3/README.md)
- Update the GitHub Actions workflows.
- Update yabridgectl to handle buth VST2 and VST3 plugins. - Update yabridgectl to handle buth VST2 and VST3 plugins.
- Update all documentation to refer to VST2 and VST3 support separately, and - Update all documentation to refer to VST2 and VST3 support separately, and
figure out how to do this in the least confusing way possible. figure out how to do this in the least confusing way possible.
@@ -33,7 +32,7 @@ incomplete list of things that still have to be done before this can be used:
- Pay close attention when updating the plugin groups section of the readme, - Pay close attention when updating the plugin groups section of the readme,
since VST3 plugins by design cannot be hosted completely individually (as in, since VST3 plugins by design cannot be hosted completely individually (as in,
each plugin is basically in its own group). each plugin is basically in its own group).
- Update all the AUR packages. - Update all the AUR packages for the `libyabridge-vst{2,3}.so` changes.
- Test the binaries built on GitHub on plain Ubuntu 18.04, are we missing any - Test the binaries built on GitHub on plain Ubuntu 18.04, are we missing any
static linking? static linking?
- When this is in a usable enough state to be merged into master, make sure to - When this is in a usable enough state to be merged into master, make sure to