-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* g++-bun-pnpm-ci: GITHUB: workflows/testing.yml: test Arch builds with g++ MISC: Dockerfile.arch: provide pnpm as JS package manager MISC: Dockerfile.arch: update build comments MISC: Dockerfile.focal: provide bun as JS package manager MISC: cirun: defer check for docker-buildx-plugin until we actually need it Makefile.mk: guard against `prefix := / / ` etc which will confuse `rm -rf` EXTERNAL: websocketpp: update zaphoyd/websocketpp to 2022-05-24 18:42:50 2022 -0500 git -C external/websocketpp/ checkout b9aeec6eaf3d5610503439b4fae3581d9aff08e8 This includes fixes applied after version 0.8.2, in particular it allows g++ to build the sources with C++20 enabled. See: zaphoyd/websocketpp#991 Signed-off-by: Tim Janik <[email protected]>
- Loading branch information
Showing
6 changed files
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
path: /tmp/cicache | ||
- name: 'Prepare Docker Image' | ||
run: | | ||
echo -e ' prefix=/ \n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | ||
echo -e ' prefix=/\n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | ||
misc/cirun -u 1000 misc/version.sh | ||
- name: 'Build Dist Assets' | ||
run: | | ||
|
@@ -54,11 +54,13 @@ jobs: | |
path: /tmp/cicache | ||
- name: 'Prepare Docker Image' | ||
run: | | ||
echo -e ' prefix=/ \n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | ||
# Test the most recent g++ via Arch | ||
echo -e ' prefix=/\n' > config-defaults.mk | ||
misc/cirun -u 1000 misc/version.sh | ||
- name: 'Run X11 GUI Tests' | ||
run: | | ||
$CIMAKE -j`nproc` all check | ||
$CIMAKE GCC_COLORS="" -j`nproc` all | ||
$CIMAKE -j`nproc` check | ||
$CIMAKE x11test-v | ||
# Artifact upload from x11test | ||
- uses: actions/[email protected] | ||
|
@@ -82,7 +84,7 @@ jobs: | |
path: /tmp/cicache | ||
- name: 'Prepare Docker Image' | ||
run: | | ||
echo -e ' prefix=/ \n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | ||
echo -e ' prefix=/\n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | ||
misc/cirun -u 1000 misc/version.sh | ||
- name: 'Make all check' | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule websocketpp
updated
102 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters