Delete main.yml

This commit is contained in:
Twarit Waikar
2020-02-03 21:36:42 +05:30
committed by GitHub
parent 5b2d8d48c3
commit 0bf806c508

View File

@@ -1,29 +0,0 @@
name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: linux-release
run: ./build_libs_release.sh && scons platform=x11 target=release
- name: linux-debug
run: ./build_libs_debug.sh && scons platform=x11 target=debug
build-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, windows-2016]
steps:
- uses: actions/checkout@v1
- name: windows-release
run: ./build_libs_release.bat & scons platform=windows target=release
- name: windows-debug
run: ./build_libs_debug.bat & scons platform=windows target=debug