mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Merge #1479
1479: Store artifacts from CircleCI r=def- a=heinrich5991 Fixes #1478. Co-authored-by: heinrich5991 <heinrich5991@gmail.com>
This commit is contained in:
commit
894a663ffe
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue