mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Improve artifacts' stripping (#1286)
* add ton build on mac-15 gh action * rename action titles * fix https://github.com/ton-blockchain/ton/issues/1246 * improve artifacts' stripping * improve artifacts' stripping * use strip -xSX on mac on github runner * use strip -xSX on mac on github runner + sudo
This commit is contained in:
parent
c1ee18c902
commit
8daf5c335a
12 changed files with 128 additions and 40 deletions
25
.github/workflows/build-ton-macos-15-arm64-shared.yml
vendored
Normal file
25
.github/workflows/build-ton-macos-15-arm64-shared.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: MacOS-15 TON build (shared, arm64)
|
||||
|
||||
on: [push,workflow_dispatch,workflow_call]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-15
|
||||
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
|
||||
- name: Build TON
|
||||
run: |
|
||||
cp assembly/native/build-macos-shared.sh .
|
||||
chmod +x build-macos-shared.sh
|
||||
./build-macos-shared.sh -t -a
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@master
|
||||
with:
|
||||
name: ton-binaries-macos-15
|
||||
path: artifacts
|
|
@ -1,4 +1,4 @@
|
|||
name: MacOS TON build (shared, arm64)
|
||||
name: MacOS-14 TON build (shared, arm64)
|
||||
|
||||
on: [push,workflow_dispatch,workflow_call]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue