forked from cryptonotefoundation/cryptonotewallet
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build scripts and core with fresh checkpoint
- Loading branch information
Showing
3 changed files
with
12 additions
and
9 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 |
---|---|---|
|
@@ -90,7 +90,6 @@ jobs: | |
with: | ||
path: ${{ steps.build.outputs.asset_path_archive }} | ||
name: ${{ steps.build.outputs.release_name_archive }} | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
@@ -113,7 +112,7 @@ jobs: | |
- name: Install Qt | ||
uses: jurplel/install-qt-action@v2 | ||
with: | ||
version: '5.12.9' | ||
version: '5.12.2' | ||
modules: 'qttools5' | ||
install-deps: 'true' | ||
|
||
|
@@ -122,7 +121,7 @@ jobs: | |
with: | ||
xcode-version: '10' | ||
|
||
- name: Install deps | ||
- name: Install other deps | ||
run: | | ||
brew install gcc boost | ||
brew link boost --force | ||
|
@@ -148,7 +147,7 @@ jobs: | |
git clone https://github.com/seredat/karbowanec.git cryptonote | ||
mkdir -p "$build_folder" | ||
cd "$build_folder" | ||
cmake -DCMAKE_C_FLAGS="-mmacosx-version-min=10.12" -DCMAKE_CXX_FLAGS="-mmacosx-version-min=10.12" -D CMAKE_BUILD_TYPE=Release ../.. | ||
cmake -D ARCH=default -D CMAKE_C_FLAGS="-mmacosx-version-min=10.12" -D CMAKE_CXX_FLAGS="-mmacosx-version-min=10.12" -D CMAKE_BUILD_TYPE=Release ../.. | ||
make | ||
mkdir "$app_name$lang_folder" | ||
cp languages/*.qm "$app_name$lang_folder" | ||
|
@@ -161,6 +160,8 @@ jobs: | |
echo "::set-output name=release_name::${release_name}.zip" | ||
echo "::set-output name=asset_path::${asset_path}" | ||
echo "::set-output name=krb_ver::${krb_ver}" | ||
env: | ||
MACOSX_DEPLOYMENT_TARGET: '10.12' | ||
|
||
- name: Create Artifact | ||
uses: actions/[email protected] | ||
|
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