minify the binary #153
Workflow file for this run
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
name: tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
# Define combinations of operating systems and architectures | |
- {os: ubuntu-latest, arch: x64} | |
- {os: ubuntu-latest, arch: arm64} | |
# - {os: windows-latest, arch: x64} | |
# - {os: windows-latest, arch: arm64} | |
- {os: macos-latest, arch: x64} | |
- {os: macos-latest, arch: arm64} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
# - name: Install dependencies (Ubuntu) | |
# if: startsWith(matrix.config.os, 'ubuntu') | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install -y libboost-all-dev | |
# - name: Install dependencies (macOS) | |
# if: startsWith(matrix.config.os, 'macos') | |
# run: | | |
# brew install boost | |
# - name: Install dependencies (Windows) | |
# if: startsWith(matrix.config.os, 'windows') | |
# run: | | |
# choco install boost-msvc-14.2 | |
- name: Set up CMake (All platforms) | |
uses: lukka/get-cmake@latest | |
- name: make build | |
run: | | |
make build | |
container-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build container image | |
run: make build-images |