Add windows to CI
This commit is contained in:
parent
05b9030d8e
commit
b63cbb8c64
32
.github/workflows/main.yml
vendored
32
.github/workflows/main.yml
vendored
@ -12,8 +12,7 @@ on:
|
|||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
# This workflow contains a single job called "build"
|
build-linux:
|
||||||
build:
|
|
||||||
# The type of runner that the job will run on
|
# The type of runner that the job will run on
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
@ -21,7 +20,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
# Runs a single command using the runners shell
|
# Runs a single command using the runners shell
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get install qt5-default libqt5websockets5-dev g++ make
|
run: sudo apt-get install qt5-default libqt5websockets5-dev g++ make
|
||||||
@ -31,10 +30,33 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE
|
cd $GITHUB_WORKSPACE
|
||||||
qmake
|
qmake
|
||||||
build
|
make
|
||||||
|
|
||||||
- name: Upload binary
|
- name: Upload binary
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: akashi
|
name: akashi-linux
|
||||||
path: bin/akashi
|
path: bin/akashi
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ilammy/msvc-dev-cmd@v1
|
||||||
|
|
||||||
|
- name: Install Qt
|
||||||
|
uses: jurplel/install-qt-action@v2
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
cd $Env:GITHUB_WORKSPACE
|
||||||
|
qmake "CONFIG += qtquickcompiler" akashi.pro
|
||||||
|
nmake
|
||||||
|
windeployqt bin\akashi.exe --release --no-opengl-sw
|
||||||
|
|
||||||
|
- name: Upload zip
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: akashi-windows
|
||||||
|
path: bin\
|
||||||
|
Loading…
Reference in New Issue
Block a user