-
-
Notifications
You must be signed in to change notification settings - Fork 6
135 lines (119 loc) · 4.4 KB
/
build-release.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
name: Build and Release
on:
release:
types: [created, published, edited, prereleased]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x86, x64, arm64]
include:
- os: ubuntu-latest
arch: x86
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
arch: x64
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
arch: arm64
c_compiler: gcc
cpp_compiler: g++
- os: windows-latest
arch: x86
c_compiler: cl
cpp_compiler: cl
- os: windows-latest
arch: x64
c_compiler: cl
cpp_compiler: cl
- os: windows-latest
arch: arm64
c_compiler: cl
cpp_compiler: cl
- os: macos-latest
arch: x86
c_compiler: clang
cpp_compiler: clang++
- os: macos-latest
arch: x64
c_compiler: clang
cpp_compiler: clang++
- os: macos-latest
arch: arm64
c_compiler: clang
cpp_compiler: clang++
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: |
cmake -B build -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=Release -S ${{ github.workspace }} -DCMAKE_CXX_FLAGS_RELEASE="-O3"
- name: Build
run: cmake --build build --config Release
- name: Download Source Code
run: |
git clone --depth 1 https://github.com/aq-org/AQ.git src
- name: Upload artifact (Linux)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: aq-${{ github.event.release.tag_name }}-linux-${{ matrix.arch }}
path: build/*
- name: Upload artifact (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
with:
name: aq-${{ github.event.release.tag_name }}-windows-${{ matrix.arch }}
path: build/*
- name: Upload artifact (macOS)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v3
with:
name: aq-${{ github.event.release.tag_name }}-macos-${{ matrix.arch }}
path: build/*
- name: Compress Release Asset (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
zip -r aq-${{ github.event.release.tag_name }}-linux-${{ matrix.arch }}.zip build
- name: Compress Release Asset (Windows)
if: matrix.os == 'windows-latest'
run: |
powershell Compress-Archive -Path build\* -DestinationPath aq-${{ github.event.release.tag_name }}-windows-${{ matrix.arch }}.zip
- name: Compress Release Asset (macOS)
if: matrix.os == 'macos-latest'
run: |
zip -r aq-${{ github.event.release.tag_name }}-macos-${{ matrix.arch }}.zip build
- name: Upload Release Asset (Linux)
if: matrix.os == 'linux-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: aq-${{ github.event.release.tag_name }}-linux-${{ matrix.arch }}.zip
asset_name: aq-${{ github.event.release.tag_name }}-linux-${{ matrix.arch }}.zip
asset_content_type: application/zip
- name: Upload Release Asset (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: aq-${{ github.event.release.tag_name }}-windows-${{ matrix.arch }}.zip
asset_name: aq-${{ github.event.release.tag_name }}-windows-${{ matrix.arch }}.zip
asset_content_type: application/zip
- name: Upload Release Asset (macOS)
if: matrix.os == 'macos-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: aq-${{ github.event.release.tag_name }}-macos-${{ matrix.arch }}.zip
asset_name: aq-${{ github.event.release.tag_name }}-macos-${{ matrix.arch }}.zip
asset_content_type: application/zip