Sandboxie/.github/workflows/main.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2020-11-28 14:34:18 +00:00
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
2020-11-28 14:46:12 +00:00
strategy:
matrix:
platform: [Win32, x64]
2020-12-09 12:37:07 +00:00
runs-on: windows-2019
2020-11-28 14:34:18 +00:00
steps:
2020-11-28 15:23:26 +00:00
- name: Checkout code
uses: actions/checkout@v2
2020-11-28 16:25:50 +00:00
2020-11-28 15:23:26 +00:00
- name: Setup msbuild
2020-11-28 14:38:51 +00:00
uses: microsoft/setup-msbuild@v1
2020-11-28 16:25:50 +00:00
2020-12-01 20:44:36 +00:00
- name: Build Sandboxie
2020-11-30 12:52:25 +00:00
run: msbuild /t:build Sandboxie\Sandbox.sln /p:Configuration="SbieRelease" /p:Platform=${{ matrix.platform }}
2020-11-28 16:25:50 +00:00
2021-01-30 15:11:08 +00:00
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ../Qt
key: ${{ runner.os }}-QtCache
2021-01-20 10:23:09 +00:00
2021-01-30 15:11:08 +00:00
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: '5.15.1'
cached: ${{ steps.cache-qt.outputs.cache-hit }}
2021-01-20 10:23:09 +00:00
2021-01-30 11:15:27 +00:00
# - name: Build Sandboxie-Plus
# run: msbuild /t:build SandboxiePlus\SandboxiePlus.sln /p:Configuration="Release" /p:Platform=${{ matrix.platform }}
2021-01-20 10:23:09 +00:00
2020-11-28 16:25:50 +00:00
- name: Upload Sandboxie
2020-11-28 15:23:26 +00:00
uses: actions/upload-artifact@v2
2020-11-28 14:52:52 +00:00
with:
name: Sandboxie (${{ matrix.platform }})
path: |
Sandboxie/Bin/${{ matrix.platform }}/SbieRelease
!**/*.pdb
2020-11-30 15:02:55 +00:00
!**/*.ipdb
2020-11-28 14:52:52 +00:00
!**/*.exp
!**/*.ilk
!**/*.iobj
!**/*.lib
!**/*.cer
2020-11-30 14:57:15 +00:00
Sandboxie/Bin/${{ matrix.platform }}/SbieRelease/SbieDrv.pdb