-
Notifications
You must be signed in to change notification settings - Fork 951
119 lines (99 loc) · 3.05 KB
/
retdec-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
## Automatic Release flow.
name: RetDec Release
on:
push:
# Trigger anytime a release tag is created.
tags:
- "v*"
env:
# Universal ENV variable containing path to all workflows scripts.
# Each OS has it's own directory there: Windows, macOS, Linux.
# Names of directories are compatible with the $RUNNER_OS variable.
WORKFLOWS_DIR: ${{ github.workspace }}/.github/workflows/
jobs:
builder:
strategy:
matrix:
sys:
- { os: ubuntu-latest, shell: bash }
- { os: windows-2019, shell: bash }
- { os: macos-11, shell: bash }
# Fail if one instance fails.
fail-fast: true
name: Build RetDec (${{ matrix.sys.os }})
runs-on: ${{ matrix.sys.os }}
defaults:
run:
shell: ${{ matrix.sys.shell }}
steps:
# Checkouts the correct commit/branch.
- uses: actions/checkout@v3
# Installs dependencies on all systems.
- name: Install Dependencies
run: bash "${WORKFLOWS_DIR}/${RUNNER_OS}/install-deps.sh"
shell: bash
- name: Build RetDec
run: bash "${WORKFLOWS_DIR}/${RUNNER_OS}/build.sh"
env:
BUILD_TYPE: Release
RETDEC_MSVC_STATIC_RUNTIME: True
shell: bash
# Prepare files for publishing/release. The resulting structure:
# RetDec-OSType-Release
# |_ bin
# |_ include
# |_ lib
# |_ share
# | \__ retdec/support/
# |
# |_ CHANGELOG.md
# |_ LICENSE
# |_ LICENSE-THIRD-PARTY
# \_ README.md
- name: Prepare Files for Publishing
run: |
cp LICENSE* install/
cp SECURITY.md install/
cp CHANGELOG.md install/
cp README.md install/
- name: Pack Artifacts Compactly
if: runner.os != 'Windows'
run: |
tar -cvJf RetDec-${{ github.ref_name }}-${{ runner.os }}-Release.tar.xz *
mv *.tar.xz ..
working-directory: install
- name: Pack Artifacts Compactly on Windows
if: runner.os == 'Windows'
run: |
7z a RetDec-${{ github.ref_name }}-${{ runner.os }}-Release.7z *
mv *.7z ..
shell: bash
working-directory: install
- name: Archive Artifacts
uses: actions/upload-artifact@v3
with:
name: RetDec-${{ github.ref_name }}-${{ runner.os }}-Release
path: RetDec-*
release:
name: Release RetDec
runs-on: ubuntu-latest
needs: builder
steps:
- uses: actions/checkout@v3
# Fetch artifacts from the build step.
- name: Fetch Artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
# Create a release.
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
name: Release ${{ github.ref_name }}
generate_release_notes: true
files: |
LICENSE*
CHANGELOG.md
artifacts/*/*.tar.xz
artifacts/*/*.7z