Skip to content
Snippets Groups Projects
Verified Commit 3f4aab4f authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

CI: remove useless quotes

(cherry picked from commit df714452)
parent a8516c90
Branches
No related tags found
No related merge requests found
Pipeline #8207 passed
...@@ -8,7 +8,7 @@ build_linux_i686: ...@@ -8,7 +8,7 @@ build_linux_i686:
stage: build stage: build
script: script:
- autoreconf -si - autoreconf -si
- './configure --host=i686-linux-gnu' - ./configure --host=i686-linux-gnu
- make -j$(nproc) - make -j$(nproc)
artifacts: artifacts:
paths: paths:
...@@ -18,7 +18,7 @@ build_linux_x86_64: ...@@ -18,7 +18,7 @@ build_linux_x86_64:
stage: build stage: build
script: script:
- autoreconf -si - autoreconf -si
- './configure --host=x86_64-linux-gnu' - ./configure --host=x86_64-linux-gnu
- make -j$(nproc) - make -j$(nproc)
artifacts: artifacts:
paths: paths:
...@@ -28,7 +28,7 @@ build_linux_arm64: ...@@ -28,7 +28,7 @@ build_linux_arm64:
stage: build stage: build
script: script:
- autoreconf -si - autoreconf -si
- './configure --host=aarch64-linux-gnu' - ./configure --host=aarch64-linux-gnu
- make -j$(nproc) - make -j$(nproc)
artifacts: artifacts:
paths: paths:
...@@ -42,7 +42,7 @@ build_windows_x86_64: ...@@ -42,7 +42,7 @@ build_windows_x86_64:
- mkdir -p deps - mkdir -p deps
- tar xf ~/tarballs/mingw-w64-x86_64-boost-$MINGW64_BOOST_VERSION-any.pkg.tar.zst --directory deps - tar xf ~/tarballs/mingw-w64-x86_64-boost-$MINGW64_BOOST_VERSION-any.pkg.tar.zst --directory deps
- autoreconf -si - autoreconf -si
- './configure --host=x86_64-w64-mingw32 --with-boost=$(pwd)/deps/mingw64/include' - ./configure --host=x86_64-w64-mingw32 --with-boost=$(pwd)/deps/mingw64/include
- make -j$(nproc) - make -j$(nproc)
artifacts: artifacts:
paths: paths:
...@@ -54,7 +54,7 @@ build_macos_x86_64: ...@@ -54,7 +54,7 @@ build_macos_x86_64:
- macOS - macOS
script: script:
- autoreconf -si - autoreconf -si
- 'arch -x86_64 ./configure CC=gcc-12 CXX=g++-12 LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison' - arch -x86_64 ./configure CC=gcc-12 CXX=g++-12 LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison
- arch -x86_64 make -j$(sysctl -n hw.ncpu) - arch -x86_64 make -j$(sysctl -n hw.ncpu)
artifacts: artifacts:
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment