Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
irrld committed Oct 12, 2023
1 parent 029c307 commit b07ffb4
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ jobs:
#uses: myci-actions/export-env-var@1
#with:
#name: PATH
#value: $PATH;${{github.workspace}}/../../zbin/glistzbin-win64/clang64/bin;${{github.workspace}}/../../zbin/glistzbin-win64/CMake/bin
#value: $PATH;${{github.workspace}}/zbin/glistzbin-win64/clang64/bin;${{github.workspace}}/zbin/glistzbin-win64/CMake/bin

- name: Move project
run: |
mv ${{github.workspace}} ${{github.workspace}}/myglistapps/${{github.repository}}
- name: cd engine
run: |
mkdir ${{github.workspace}}/../../engine/
cd ${{github.workspace}}/../../engine/
mkdir ${{github.workspace}}/engine
cd ${{github.workspace}}/engine
- name: Clone GlistEngine
uses: GuillaumeFalourd/[email protected]
Expand All @@ -44,24 +48,24 @@ jobs:

- name: cd zbin
run: |
mkdir ${{github.workspace}}/../../zbin
cd ${{github.workspace}}/../../zbin
mkdir ${{github.workspace}}/zbin
cd ${{github.workspace}}/zbin
- name: Download zbin
uses: suisei-cn/actions-download-file@v1
id: glistzbin-win64 # Remember to give an ID if you need the output
with:
url: 'https://github.com/GlistEngine/glistzbin-win64/releases/download/v.2.0.2/glistzbin-win64-2.0.2.zip'
target: ${{github.workspace}}/../../zbin/
target: ${{github.workspace}}/zbin

- name: Extract zip
run: |
mkdir ${{github.workspace}}/../../zbin/glistzbin-win64
7z x ${{github.workspace}}/../../zbin/glistzbin-win64-2.0.2.zip ${{github.workspace}}/../../zbin/glistzbin-win64
mkdir ${{github.workspace}}/zbin/glistzbin-win64
7z x ${{github.workspace}}/zbin/glistzbin-win64-2.0.2.zip ${{github.workspace}}/zbin/glistzbin-win64
- name: List
run: |
cd ${{github.workspace}}/../../
cd ${{github.workspace}}
tree /f
- name: Configure CMake
Expand Down

0 comments on commit b07ffb4

Please sign in to comment.