]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Remove gwion-action from linux/macos/windows workflows
authorChase <44284917+TotallyNotChase@users.noreply.github.com>
Sun, 4 Oct 2020 17:42:22 +0000 (01:42 +0800)
committerChase <44284917+TotallyNotChase@users.noreply.github.com>
Sun, 4 Oct 2020 17:42:22 +0000 (01:42 +0800)
.github/workflows/linux.yml
.github/workflows/macos.yml
.github/workflows/windows.yml

index 25c3796081f4e46670786446350f8554810bdcc8..abccc7703127e215042b085a36944f5007c1aac9 100644 (file)
@@ -17,12 +17,18 @@ jobs:
         double: [0, 1]
 
     steps:
-    - name: Build Gwion
-      uses: fennecdjay/gwion-action@v1
-      with:
-        ref: ${{ github.sha }}
-        run: true
+    - name Checkout
+      uses: actions/checkout@v2
+
+    - name: Init submodules
+      run: git submodule update --init util ast
+
+    - name: Build
+      run: make
       env:
         CC: ${{ matrix.cc }}
         USE_DOUBLE: ${{ matrix.double }}
         USE_DEBUG: 1
+
+    - name: Test
+      run: make test
index 1be69714abd10ed664eb64406a01e2b05862c2f9..bc69fcb346ba608a9c12f3e4a25635ada0ef9b11 100644 (file)
@@ -17,12 +17,18 @@ jobs:
         double: [0, 1]
 
     steps:
-    - name: Build Gwion
-      uses: fennecdjay/gwion-action@v1
-      with:
-        ref: ${{ github.sha }}
-        run: true
+    - name Checkout
+      uses: actions/checkout@v2
+
+    - name: Init submodules
+      run: git submodule update --init util ast
+
+    - name: Build
+      run: make
       env:
         CC: ${{ matrix.cc }}
+        USE_DOUBLE: ${{ matrix.double }}
         USE_DEBUG: 1
-        USE_DOUBLE: 1
+
+    - name: Test
+      run: make test
index fe451bda9c0ab28b872896114773026512fd3140..875c76a4962fe7418aeb5ffc3812aaff7215b027 100644 (file)
@@ -16,13 +16,18 @@ jobs:
         double: [0, 1]
 
     steps:
-    - name: Build Gwion
-      uses: fennecdjay/gwion-action@v1
-      with:
-        dir: .
-        ref: ${{ github.sha }}
-        run: true
+    - name Checkout
+      uses: actions/checkout@v2
+
+    - name: Init submodules
+      run: git submodule update --init util ast
+
+    - name: Build
+      run: make
       env:
-        CC: gcc
+        CC: ${{ matrix.cc }}
         USE_DOUBLE: ${{ matrix.double }}
-        BUILD_ON_WINDOWS: 1
+        USE_DEBUG: 1
+
+    - name: Test
+      run: make test