Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2020-09-16 00:55:28 +0300
committerKenneth Heafield <github@kheafield.com>2020-09-16 00:55:28 +0300
commit8f28282c3bd854922da638024d2659be52e892e9 (patch)
tree90b591ee994252ddd44d593276b4ef895bbcb5aa
parent4172dcc209e6793dd920dec9cf9c9fc81605bd9d (diff)
Change Ubuntu gcc5 to gcc5 + debug
-rw-r--r--.github/workflows/ubuntu-gcc5-debug.yml (renamed from .github/workflows/ubuntu-gcc5.yml)6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ubuntu-gcc5.yml b/.github/workflows/ubuntu-gcc5-debug.yml
index e160849..1323828 100644
--- a/.github/workflows/ubuntu-gcc5.yml
+++ b/.github/workflows/ubuntu-gcc5-debug.yml
@@ -1,4 +1,4 @@
-name: Ubuntu gcc5
+name: Ubuntu gcc5 debug
on:
push:
@@ -13,12 +13,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: install
- run: sudo apt-get install gcc-5 g++-5
+ run: sudo apt-get install -y gcc-5 g++-5
- name: cmake
run: |
cmake -E make_directory build
cd build
- cmake -DCMAKE_C_COMPILER=gcc-5 -DCMAKE_CXX_COMPILER=g++-5 ..
+ cmake -DCMAKE_C_COMPILER=gcc-5 -DCMAKE_CXX_COMPILER=g++-5 -DCMAKE_BUILD_TYPE=Debug ..
- name: Compile
working-directory: build
run: cmake --build . -j2