summaryrefslogtreecommitdiff
path: root/portaudio/.github/workflows/c-cpp.yml
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-08-27 23:52:56 -0500
committersanine <sanine.not@pm.me>2022-08-27 23:52:56 -0500
commita4dd0ad63c00f4dee3b86dfd3075d1d61b2b3180 (patch)
tree13bd5bfa15e6fea2a12f176bae79adf9c6fd0933 /portaudio/.github/workflows/c-cpp.yml
parentbde3e4f1bb7b8f8abca0884a7d994ee1c17a66b1 (diff)
add plibsys
Diffstat (limited to 'portaudio/.github/workflows/c-cpp.yml')
-rw-r--r--portaudio/.github/workflows/c-cpp.yml54
1 files changed, 0 insertions, 54 deletions
diff --git a/portaudio/.github/workflows/c-cpp.yml b/portaudio/.github/workflows/c-cpp.yml
deleted file mode 100644
index 180b46b..0000000
--- a/portaudio/.github/workflows/c-cpp.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-name: C/C++ CI
-
-on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: configure
- run: ./configure
- - name: make
- run: make
-
- build-cmake:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: cmake
- run: cmake .
- - name: make
- run: make
-
- build-cmake-msvc:
-
- runs-on: windows-latest
-
- steps:
- - uses: actions/checkout@v1
- - name: cmake
- run: cmake .
- - name: build
- run: cmake --build .
-
- build-cmake-mingw:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: apt
- run: sudo apt-get install mingw-w64
- - name: cmake
- run: cmake -DCMAKE_TOOLCHAIN_FILE=i686-w64-mingw32.cmake .
- - name: make
- run: make