1479: Store artifacts from CircleCI r=def- a=heinrich5991

Fixes #1478.

Co-authored-by: heinrich5991 <heinrich5991@gmail.com>
This commit is contained in:
bors[bot] 2019-03-21 06:35:15 +00:00
commit 894a663ffe

View file

@ -52,12 +52,18 @@ jobs:
cd build
env CFLAGS="-Wdeclaration-after-statement -Werror" CXXFLAGS="-Werror" cmake -DDOWNLOAD_GTEST=ON ..
make everything
make package_default
mkdir -p /tmp/artifacts
cp DDNet-*-linux_x86_64.tar.xz /tmp/artifacts
- run: |
mkdir build2
cd build2
mkdir noautoupdate
cd noautoupdate
env CFLAGS="-Wdeclaration-after-statement -Werror" CXXFLAGS="-Werror" cmake -DAUTOUPDATE=OFF -DDOWNLOAD_GTEST=ON ..
make everything
- store_artifacts:
path: /tmp/artifacts
- persist-to-workspace:
root: ./
paths: ./*
@ -78,7 +84,7 @@ jobs:
./DDNet-Server shutdown
- run: |
cd build2
cd noautoupdate
make run_tests
workflows: