File tree 3 files changed +21
-4
lines changed
3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 6
6
- ' *'
7
7
8
8
jobs :
9
- release-win :
9
+ release :
10
10
runs-on : ubuntu-latest
11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
14
- script-id : [win32, win64]
14
+ script-id : [win32, win64, mac ]
15
15
env :
16
16
FILE_ENV : ./cd/00_setup_env_${{ matrix.script-id }}.sh
17
17
OS_NAME : linux
30
30
run : |
31
31
./cd/run_all.sh
32
32
- name : release
33
- uses : softprops/action-gh-release@v1
33
+ uses : softprops/action-gh-release@5e3f23f92c903aac25270f66388fdcb366c5b549
34
34
with :
35
35
files : ' /tmp/release/*'
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ #
3
+ # Copyright (c) 2019-2020 The Bitcoin Core developers
4
+ # Distributed under the MIT software license, see the accompanying
5
+ # file COPYING or http://www.opensource.org/licenses/mit-license.php.
6
+
7
+ export LC_ALL=C.UTF-8
8
+
9
+ export CONTAINER_NAME=ci_macos_cross
10
+ export DOCKER_NAME_TAG=ubuntu:20.04
11
+ export HOST=x86_64-apple-darwin18
12
+ export PACKAGES=" cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools libtinfo5 python3-dev python3-setuptools xorriso"
13
+ export XCODE_VERSION=12.1
14
+ export XCODE_BUILD_ID=12A7403
15
+ export RUN_UNIT_TESTS=false
16
+ export RUN_FUNCTIONAL_TESTS=false
17
+ export GOAL=" deploy"
18
+ export GRIDCOIN_CONFIG=" --with-gui --enable-reduce-exports"
Original file line number Diff line number Diff line change @@ -41,5 +41,4 @@ END_FOLD
41
41
BEGIN_FOLD cache_stats
42
42
DOCKER_EXEC " ccache --version | head -n 1 && ccache --show-stats"
43
43
DOCKER_EXEC du -sh " ${DEPENDS_DIR} " /* /
44
- DOCKER_EXEC du -sh " ${PREVIOUS_RELEASES_DIR} "
45
44
END_FOLD
You can’t perform that action at this time.
0 commit comments