Skip to content

Release

Release #34

Workflow file for this run

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: Tree
run: |
sudo apt-get install tree
tree
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 *
working-directory:
- name: Create GitHub release
run: |
tree
gh release create ${{ github.event.inputs.version }} --generate-notes breakpad-utilities-*.zip
env:
GH_TOKEN: ${{ github.token }}