Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Jan 8, 2024
1 parent df9eea8 commit e565015
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/Build_LODs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@ jobs:
with:
lfs: true # This ensures LFS is initialized


# - name: Install Chocolatey
# run: |
# Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

- name: Specify Chocolatey Source
run: choco source add -n=chocolatey -s=https://chocolatey.org/api/v2/

- name: Install Visual C++ Redistributable
run: choco install vcredist-all -y

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
Expand All @@ -33,6 +44,33 @@ jobs:
- name: Publish with dotnet
run: dotnet publish -c Release -r win10-x64 -o ./publish --self-contained true

- name: Install Vulkan SDK
uses: jakoch/[email protected]
with:
vulkan_version: 1.3.268.0
optional_components: com.lunarg.vulkan.vma
install_runtime: true
cache: true
destination: ${{ github.workspace }}/publish

- name: List Vulkan DLLs directory
run: ls ${{ github.workspace }}/publish/1.3.268.0 && ls ${{ github.workspace }}/publish/1.3.268.0/Bin/ && ls ${{ github.workspace }}/publish/1.3.268.0/runtime

- name: Move files to another directory
run: |
# Source directory path
source_directory="path/to/source/directory"
# Destination directory path
destination_directory="path/to/destination/directory"
# Move files from source to destination
mv ./publish/1.3.268.0/Bin/* ./publish/
shell: bash

- name: List DLL directory
run: ls ./publish

- name: Setup Node.js
uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit e565015

Please sign in to comment.