From 9e165763803a4aa975a9b1a920c7171b0ded63c7 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 14 Oct 2020 23:09:40 +0300 Subject: [PATCH] ci: turn on only the first part of binary_artifact.yml (building) --- .github/workflows/binary_artifact.yml | 42 +++++++++++++-------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/binary_artifact.yml b/.github/workflows/binary_artifact.yml index 63e59ad62f..2bcbd1c1ee 100644 --- a/.github/workflows/binary_artifact.yml +++ b/.github/workflows/binary_artifact.yml @@ -1,24 +1,24 @@ -## name: Build binary artifacts -## -## on: -## push: -## branches: -## - main -## - master -## -## jobs: -## build-linux: -## runs-on: ubuntu-latest -## strategy: -## matrix: -## compiler: [gcc] -## -## steps: -## - uses: actions/checkout@v1 -## - name: Compile -## env: -## CC: ${{ matrix.compiler }} -## run: make +name: Build binary artifacts + +on: + push: + branches: + - main + - master + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + matrix: + compiler: [gcc] + + steps: + - uses: actions/checkout@v1 + - name: Compile + env: + CC: ${{ matrix.compiler }} + run: make ## - name: Create artifact ## uses: actions/upload-artifact@v2 ## with: