forked from madMAx43v3r/chia-plotter
-
Notifications
You must be signed in to change notification settings - Fork 9
90 lines (73 loc) · 2.82 KB
/
build-osx.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: CI Build OSX
on:
push:
branches:
- main
- master
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
build-debug:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Install CMake
run: brew install cmake
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build ${{github.workspace}}/build --config Debug
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
name: Debug build
path: |
${{github.workspace}}/build/chia_plot
${{github.workspace}}/build/chia_plot_k34
build-release:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Install CMake
run: brew install cmake
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
- name: Build
run: cmake --build ${{github.workspace}}/build --config Release
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
name: Release build
path: |
${{github.workspace}}/build/chia_plot
${{github.workspace}}/build/chia_plot_k34
- name: Get tag name
if: startsWith(github.ref, 'refs/tags/')
id: tag-name
run: |
echo "TAG_NAME=$(echo ${{ github.ref }} | cut -d'/' -f 3)" >> "$GITHUB_OUTPUT"
- name: Get Release ID
if: startsWith(github.ref, 'refs/tags/')
id: release-id
run: |
echo "RELEASE_ID=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${{ github.repository }}/releases/tags/${{ steps.tag-name.outputs.TAG_NAME }} | jq '.id')" >> "$GITHUB_OUTPUT"
- name: Upload to Release
if: startsWith(github.ref, 'refs/tags/')
run: |
curl \
-X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: $(file -b --mime-type ${{github.workspace}}/build/chia_plot)" \
--data-binary @${{github.workspace}}/build/chia_plot \
https://uploads.github.com/repos/${{ github.repository }}/releases/${{ steps.release-id.outputs.RELEASE_ID }}/assets?name=chia_plot-${{ steps.tag-name.outputs.TAG_NAME }}-macos-intel
curl \
-X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: $(file -b --mime-type ${{github.workspace}}/build/chia_plot_k34)" \
--data-binary @${{github.workspace}}/build/chia_plot_k34 \
https://uploads.github.com/repos/${{ github.repository }}/releases/${{ steps.release-id.outputs.RELEASE_ID }}/assets?name=chia_plot_k34-${{ steps.tag-name.outputs.TAG_NAME }}-macos-intel