Skip to content

remove boost dependency #275

remove boost dependency

remove boost dependency #275

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
DISTRO: [
{ "ubuntu": "focal", "file": "ubuntu" },
{ "ubuntu": "focal", "file": "ubuntu_llvm" },
{ "ubuntu": "jammy", "file": "ubuntu" },
{ "ubuntu": "jammy", "file": "ubuntu_llvm" }
]
steps:
- uses: actions/checkout@v2
with:
submodule: true
- name: Docker login
continue-on-error: true
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Docker build
uses: docker/build-push-action@v2
with:
file: ${{github.workspace}}/docker/${{ matrix.DISTRO.file }}/Dockerfile
build-args: |
BASE_IMAGE=ubuntu:${{ matrix.DISTRO.ubuntu }}
context: .
push: false