Commit 0c42102 1 parent 6393924 commit 0c42102 Copy full SHA for 0c42102
File tree 1 file changed +19
-7
lines changed
1 file changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -77,28 +77,40 @@ jobs:
77
77
osx-build :
78
78
name : OSX Build
79
79
if : ${{ github.event_name != 'workflow_dispatch' }}
80
- runs-on : macos-latest
80
+ runs-on : macos-latest-large
81
+
81
82
steps :
82
- - uses : actions/checkout@v3
83
+ - uses : actions/checkout@v4
84
+
85
+ # Workaround for https://github.com/actions/setup-python/issues/577
86
+ - name : Clean up binaries and links (macOS)
87
+ run : |
88
+ rm -f /usr/local/bin/2to3-3.*
89
+ rm -f /usr/local/bin/idle3.*
90
+ rm -f /usr/local/bin/pydoc3.*
91
+ rm -f /usr/local/bin/python3.*
92
+ rm -f /usr/local/bin/2to3
93
+ rm -f /usr/local/bin/idle3
94
+ rm -f /usr/local/bin/pydoc3
95
+ rm -f /usr/local/bin/python3
96
+ rm -f /usr/local/bin/python3-config
97
+
83
98
- name : Install deps (macOS)
84
99
run : |
85
- rm '/usr/local/bin/2to3'
86
- brew unlink node
87
100
brew update
88
- brew upgrade || true
89
101
brew tap discoteq/discoteq; brew install flock
90
102
brew install autoconf autogen automake
91
- brew install gcc@8
92
103
brew install binutils
93
104
brew install protobuf
94
105
brew install coreutils
95
106
brew install wget
96
107
brew install python3
97
- brew install gmp
108
+
98
109
- name : Build (macOS)
99
110
run : |
100
111
./zcutil/build-mac.sh -j4
101
112
zip --junk-paths komodo-osx src/komodod src/komodo-cli
113
+
102
114
- name : Upload komodo-osx.zip as artifact
103
115
uses : actions/upload-artifact@v1
104
116
with :
You can’t perform that action at this time.
0 commit comments