]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Add (linux) release action
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sat, 8 Aug 2020 13:06:25 +0000 (15:06 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sat, 8 Aug 2020 13:06:25 +0000 (15:06 +0200)
.github/workflows/linux-release.yml [new file with mode: 0644]

diff --git a/.github/workflows/linux-release.yml b/.github/workflows/linux-release.yml
new file mode 100644 (file)
index 0000000..907dd63
--- /dev/null
@@ -0,0 +1,28 @@
+name: Linux
+
+on:
+  push:
+    branches:    
+    - '**'
+    - '!gh-pages'
+
+jobs:
+  build:
+    name: \[ Linux \] ${{ matrix.double && 'double' || 'float '}} (${{ matrix.cc }})
+    runs-on: ubuntu-latest
+    if: "!contains(github.event.head_commit.message, '[skip ci]')"
+    strategy:
+
+    steps:
+
+    - name: clone Gwion
+    - uses: actions/checkout@v2
+
+    - name: SubModules
+      run: git submodule update --init util ast
+
+    - name: Build
+      run: make
+      env:
+        USE_LTO: 1 
+