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
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
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