Compare commits

...

9 Commits

Author SHA1 Message Date
f5a5d72cc4 Working mac arm+mac x86+windows x86 builds 2024-09-15 18:48:20 +04:00
1bec97b128 test 2024-09-15 18:41:31 +04:00
dea2ac965f test 2024-09-15 18:39:49 +04:00
93b5f08352 test 2024-09-15 18:35:55 +04:00
34e19d9c66 Test 2024-09-15 18:27:03 +04:00
372d9ae6b7 Test 2024-09-15 18:25:18 +04:00
befc78c628 Correct windows action 2024-09-15 18:22:44 +04:00
98f8a96bb7 Build on commit 2024-09-15 18:13:55 +04:00
e767f32f2f Update windows gh action 2024-09-15 18:12:53 +04:00

View File

@ -1,6 +1,9 @@
name: build-nmage name: build-nmage
on: on:
push:
branches:
- dev
create: create:
workflow_dispatch: workflow_dispatch:
@ -16,12 +19,13 @@ jobs:
- name: Install assimp-go dll - name: Install assimp-go dll
run: | run: |
New-Item -ItemType Directory -Force -Path C:\Windows\System32 Invoke-WebRequest -Uri "https://github.com/bloeys/assimp-go/releases/download/v0.4.2/libassimp-5.dll" -OutFile "C:\Windows\System32\libassimp-5.dll"
Invoke-WebRequest -Uri "https://github.com/bloeys/assimp-go/releases/download/v0.4.2/libassimp-5.dll" -OutFile "C:\Windows\System32\assimp.dll"
- name: Install SDL2 - name: Download and setup SDL2
run: | run: |
choco install sdl2 sdl2_image sdl2_ttf sdl2_gfx pkg-config Invoke-WebRequest -Uri "https://github.com/libsdl-org/SDL/releases/download/release-2.30.7/SDL2-devel-2.30.7-mingw.zip" -OutFile "SDL2.zip"
Expand-Archive -Path "SDL2.zip" -DestinationPath "SDL2"
Copy-Item -Path "SDL2\SDL2-2.30.7\x86_64-w64-mingw32" -Destination "C:\mingw64" -Recurse -Force
- name: Clone nmage - name: Clone nmage
run: git clone https://github.com/bloeys/nmage run: git clone https://github.com/bloeys/nmage