-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #238 from ConcealNetwork/development
v6.5.2
- Loading branch information
Showing
34 changed files
with
295 additions
and
184 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 |
---|---|---|
|
@@ -130,6 +130,41 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
build-ubuntu20-clang: | ||
name: Ubuntu 20.04 clang | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Build | ||
id: build | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libboost-all-dev clang | ||
build_folder="build/debug" | ||
ccx_version=${GITHUB_SHA::7} | ||
ccx_ver_folder=$(echo $ccx_version | sed 's/\.//g') | ||
release_name=ccx-cli-ubuntu-2004-clang-dev"$ccx_version" | ||
mkdir -p "$build_folder" | ||
cd "$build_folder" | ||
cmake ../.. -DCMAKE_BUILD_TYPE=Debug | ||
make -j2 | ||
mkdir -p "$release_name" | ||
exeFiles=() | ||
for f in src/*; do [[ -x $f && -f $f ]] && exeFiles+=( "$f" ); done | ||
strip "${exeFiles[@]}" | ||
cp "${exeFiles[@]}" "$release_name/" | ||
echo "::set-output name=release_name::${release_name}.zip" | ||
echo "::set-output name=artifact_path::$build_folder/$release_name" | ||
- name: Upload To GH Artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: ${{ steps.build.outputs.release_name }} | ||
path: ${{ steps.build.outputs.artifact_path }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
build-macos: | ||
name: macOS | ||
runs-on: macos-latest | ||
|
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
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
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
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
Oops, something went wrong.