Skip to content

Optimize the dockerfile #68

Optimize the dockerfile

Optimize the dockerfile #68

Workflow file for this run

name: Linux Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Compile and test on Linux
runs-on: ubuntu-latest
container:
image: wichtounet/cpp:latest
strategy:
matrix:
compiler: [gcc, clang]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build binaries
run: make -j5 release_debug compiler=${{ matrix.compiler }}