Skip to content

Commit

Permalink
Test github win32 build action
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Phillips committed Dec 29, 2023
1 parent 3db73b4 commit 56d6d82
Showing 1 changed file with 13 additions and 25 deletions.
38 changes: 13 additions & 25 deletions .github/workflows/binaries-win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ jobs:
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

steps:
- name: Checkout code
id: checkout-code
uses: actions/checkout@v3

- name: Info1 Visual Studio
shell: pwsh
run: |
Expand All @@ -32,28 +28,20 @@ jobs:
| Out-File -FilePath "${Env:GITHUB_ENV}" -Append
cat "${Env:GITHUB_ENV}"
- name: compile mew
shell: cmd
run: |
echo ::set
set
echo ::"%VSDEVCMD%" -arch=x86
"%VSDEVCMD%" -arch=x86
echo ::set
set
echo ::cd microemacs\src
cd microemacs\src
echo ::.\build.bat -t w
.\build.bat -t w
- name: compile mecw
shell: cmd
- name: Compile mew
shell: pwsh
run: |
"%VSDEVCMD%" -arch=x86
set
cd microemacs\src
.\build.bat -t cw
& "${Env:COMSPEC}" /s /c "`"${Env:VSDEVCMD}`" -arch=x86 -host_arch=x64 -no_logo && set" `
| % { , ($_ -Split '=', 2) } `
| % { [System.Environment]::SetEnvironmentVariable($_[0], $_[1]) }
echo evn
dir env:
echo which nmake
get-command nmake
echo test nmake
nmake /?
echo cat VsDevCmd
cat "${Env:VSDEVCMD}"
Expand Down

0 comments on commit 56d6d82

Please sign in to comment.