Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,35 @@ on:
jobs:
build_linux_x64:
runs-on: ubuntu-latest
name: Build binaries
name: Build Linux x86-64 binaries
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run buildscript in docker
uses: ./.github/build-linux-x64
id: build
with:
buildscript: './build_clean.sh'
buildscript: './build_clean.sh'

build_win_x64:
runs-on: windows-latest
name: Build Windows x86-64 Binaries
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.15.x
- name: Install MSVC C++ compiler
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
toolset: 14.2x.yyyyy
- name: Install Nodejs 14
uses: actions/setup-node@v2-beta
with:
node-version: '14'
- name: Run build_clean.bat
shell: cmd
run: call build_clean.bat NOPAUSE
2 changes: 2 additions & 0 deletions build_clean.bat
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ echo "Build done!"
if "%1" neq "NOPAUSE" (
pause
)

exit 0