forked from google/breakpad
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GitHub Actions to create artifacts and releases.
- Loading branch information
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
name: Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version to release' | ||
required: true | ||
type: string | ||
env: | ||
TERM: xterm-256color | ||
|
||
jobs: | ||
build: | ||
name: ${{ matrix.name }} | ||
runs-on: ${{ matrix.runs-on }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: Release - Ubuntu | ||
short-name: lin64 | ||
runs-on: ubuntu-latest | ||
cmake-args: -D CMAKE_EXE_LINKER_FLAGS=-static | ||
compiler: clang | ||
cxx-compiler: clang++ | ||
|
||
- name: Release - macOS | ||
short-name: mac64 | ||
runs-on: macos-latest | ||
cmake-args: -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13 | ||
|
||
- name: Release - Windows | ||
short-name: win64 | ||
runs-on: windows-latest | ||
cmake-args: -D CMAKE_GENERATOR_PLATFORM=x64 -D CMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install packages (Ubuntu) | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install -y ninja-build | ||
|
||
- name: Compiling source code | ||
run: | | ||
cmake -S . -B build ${{ matrix.cmake-args }} -D BUILD_SHARED_LIBS=OFF -D CMAKE_BUILD_TYPE=MinSizeRel | ||
cmake --build build --config MinSizeRel | ||
env: | ||
CC: ${{ matrix.compiler }} | ||
CXX: ${{ matrix.cxx-compiler }} | ||
|
||
- name: Upload artifacts (macOS/Linux) | ||
uses: actions/upload-artifact@v3 | ||
if: runner.os != 'Windows' | ||
with: | ||
name: breakpad-utilities-${{ matrix.short-name }} | ||
path: | | ||
build/minidump* | ||
build/dump_sym* | ||
retention-days: 7 | ||
|
||
- name: Upload artifacts (Windows) | ||
uses: actions/upload-artifact@v3 | ||
if: runner.os == 'Windows' | ||
with: | ||
name: breakpad-utilities-${{ matrix.short-name }} | ||
path: | | ||
build/MinSizeRel/minidump* | ||
build/MinSizeRel/dump_sym* | ||
build/MinSizeRel/msdia* | ||
retention-days: 7 | ||
|
||
deploy: | ||
name: Deploy Build - Ubuntu | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
|
||
- name: Package release assets | ||
run: | | ||
cd breakpad-utilities-lin64 | ||
7z a -tzip ../breakpad-utilities-lin64.zip * | ||
cd ../breakpad-utilities-mac64 | ||
7z a -tzip ../breakpad-utilities-mac64.zip * | ||
cd ../breakpad-utilities-win64 | ||
7z a -tzip ../breakpad-utilities-win64.zip * | ||
- name: Create GitHub release | ||
run: | | ||
gh release create ${{ github.event.inputs.version }} --generate-notes breakpad-utilities-*.zip | ||
env: | ||
GH_TOKEN: ${{ github.token }} |