mirror of https://github.com/infosecn1nja/C3.git
Add github workflows (#11)
Add github workflowsdependabot/npm_and_yarn/Src/WebController/UI/websocket-extensions-0.1.4
parent
12cf67a5b8
commit
47f84644fc
|
@ -0,0 +1,31 @@
|
|||
name: Build C3 (Clang)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build C3 (Clang)
|
||||
strategy:
|
||||
matrix:
|
||||
platfom: [x86, x64]
|
||||
configuration: [ClangDebug, ClangRwdi, ClangRelease]
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Dotnet restore
|
||||
shell: cmd
|
||||
run: |
|
||||
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" Src/C3.sln "/t:restore"
|
||||
- name: Build MSVC
|
||||
shell: cmd
|
||||
run: |
|
||||
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" Src/C3.sln "/p:Platform=${{ matrix.platfom }}" "/p:Configuration="${{ matrix.configuration }}"
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
name: Build C3 (MSVC)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build C3 (MSVC)
|
||||
strategy:
|
||||
matrix:
|
||||
platfom: [x86, x64]
|
||||
configuration: [Debug, ReleaseWithDebInfo, Release]
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Dotnet restore
|
||||
shell: cmd
|
||||
run: |
|
||||
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" Src/C3.sln "/t:restore"
|
||||
|
||||
- name: Build MSVC
|
||||
shell: cmd
|
||||
run: |
|
||||
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" Src/C3.sln "/p:Platform=${{ matrix.platfom }}" "/p:Configuration="${{ matrix.configuration }}"
|
||||
|
Loading…
Reference in New Issue