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

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Nov 15, 2023
1 parent de4d6a8 commit df76014
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 44 deletions.
44 changes: 1 addition & 43 deletions .github/workflows/Validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,6 @@ jobs:
- name: Build
run: cmake --build Build --config ${{ env.BUILD_TYPE }} ${{ matrix.config.cmake_build_flags }}

# - name: Validate
# shell: bash
# working-directory: Build
# env:
# VALIDATE_IN_PROCESS: true
# if: runner.os == 'macOS'
# run: |
# cmake --install .
# curl -LsS ${{ matrix.config.pluginval_link }} -o pluginval.zip
# unzip -q pluginval
# ${{ matrix.config.pluginval_path }} --validate *_artefacts/${{ env.BUILD_TYPE }}/VST3/*.vst3


- name: Prepare build artifacts
shell: bash
working-directory: Build
Expand All @@ -120,41 +107,12 @@ jobs:
- if: runner.os == 'Windows'
run: |
Compress-Archive -Path Build\${{ runner.os }}-${{github.ref_name}} -Destination NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip
Compress-Archive -Path Build\${{ runner.os }}-${{github.ref_name}}\* -Destination NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip
- if: runner.os != 'Windows'
run: |
zip --junk-paths NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip Build/${{ runner.os }}-${{github.ref_name}}/*
# - name: Archive and upload build artifacts
# uses: actions/upload-artifact@v3
# with:
# name: NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}
# path: Build/${{ runner.os }}-${{github.ref_name}}

# - name: Display structure of downloaded files
# run: ls

# - name: Create Release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# uses: actions/create-release@v1
# id: create_release
# with:
# draft: true
# tag_name: ${{github.ref_name}}
# release_name: ${{github.ref_name}}

# - name: Upload Asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: ./${{ runner.os }}-${{github.ref_name}}.zip
# asset_name: NDI_Audio_IO-${{ runner.os }}-${{github.ref_name}}.zip
# asset_content_type: application/zip

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### JUCE CMake Audio Plugin Template ###
cmake_minimum_required(VERSION 3.22)
project(NDI-Audio-IO VERSION 1.0.0)
project(NDI-Audio-IO VERSION 0.1.0)

message(STATUS ${CMAKE_SYSTEM_NAME})

Expand Down

0 comments on commit df76014

Please sign in to comment.