Skip to content
This repository was archived by the owner on Nov 10, 2024. It is now read-only.

Commit df76014

Browse files
committed
dev
1 parent de4d6a8 commit df76014

File tree

2 files changed

+2
-44
lines changed

2 files changed

+2
-44
lines changed

.github/workflows/Validation.yml

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,6 @@ jobs:
9696
- name: Build
9797
run: cmake --build Build --config ${{ env.BUILD_TYPE }} ${{ matrix.config.cmake_build_flags }}
9898

99-
# - name: Validate
100-
# shell: bash
101-
# working-directory: Build
102-
# env:
103-
# VALIDATE_IN_PROCESS: true
104-
# if: runner.os == 'macOS'
105-
# run: |
106-
# cmake --install .
107-
# curl -LsS ${{ matrix.config.pluginval_link }} -o pluginval.zip
108-
# unzip -q pluginval
109-
# ${{ matrix.config.pluginval_path }} --validate *_artefacts/${{ env.BUILD_TYPE }}/VST3/*.vst3
110-
111-
11299
- name: Prepare build artifacts
113100
shell: bash
114101
working-directory: Build
@@ -120,41 +107,12 @@ jobs:
120107
121108
- if: runner.os == 'Windows'
122109
run: |
123-
Compress-Archive -Path Build\${{ runner.os }}-${{github.ref_name}} -Destination NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip
110+
Compress-Archive -Path Build\${{ runner.os }}-${{github.ref_name}}\* -Destination NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip
124111
125112
- if: runner.os != 'Windows'
126113
run: |
127114
zip --junk-paths NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip Build/${{ runner.os }}-${{github.ref_name}}/*
128115
129-
# - name: Archive and upload build artifacts
130-
# uses: actions/upload-artifact@v3
131-
# with:
132-
# name: NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}
133-
# path: Build/${{ runner.os }}-${{github.ref_name}}
134-
135-
# - name: Display structure of downloaded files
136-
# run: ls
137-
138-
# - name: Create Release
139-
# env:
140-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
141-
# uses: actions/create-release@v1
142-
# id: create_release
143-
# with:
144-
# draft: true
145-
# tag_name: ${{github.ref_name}}
146-
# release_name: ${{github.ref_name}}
147-
148-
# - name: Upload Asset
149-
# uses: actions/upload-release-asset@v1
150-
# env:
151-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
152-
# with:
153-
# upload_url: ${{ steps.create_release.outputs.upload_url }}
154-
# asset_path: ./${{ runner.os }}-${{github.ref_name}}.zip
155-
# asset_name: NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip
156-
# asset_content_type: application/zip
157-
158116
- name: Release
159117
uses: softprops/action-gh-release@v1
160118
with:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### JUCE CMake Audio Plugin Template ###
22
cmake_minimum_required(VERSION 3.22)
3-
project(NDI-Audio-IO VERSION 1.0.0)
3+
project(NDI-Audio-IO VERSION 0.1.0)
44

55
message(STATUS ${CMAKE_SYSTEM_NAME})
66

0 commit comments

Comments
 (0)