ci: turn on only the first part of binary_artifact.yml (building)
parent
067c8b39ba
commit
9e16576380
|
@ -1,24 +1,24 @@
|
||||||
## name: Build binary artifacts
|
name: Build binary artifacts
|
||||||
##
|
|
||||||
## on:
|
on:
|
||||||
## push:
|
push:
|
||||||
## branches:
|
branches:
|
||||||
## - main
|
- main
|
||||||
## - master
|
- master
|
||||||
##
|
|
||||||
## jobs:
|
jobs:
|
||||||
## build-linux:
|
build-linux:
|
||||||
## runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
## strategy:
|
strategy:
|
||||||
## matrix:
|
matrix:
|
||||||
## compiler: [gcc]
|
compiler: [gcc]
|
||||||
##
|
|
||||||
## steps:
|
steps:
|
||||||
## - uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
## - name: Compile
|
- name: Compile
|
||||||
## env:
|
env:
|
||||||
## CC: ${{ matrix.compiler }}
|
CC: ${{ matrix.compiler }}
|
||||||
## run: make
|
run: make
|
||||||
## - name: Create artifact
|
## - name: Create artifact
|
||||||
## uses: actions/upload-artifact@v2
|
## uses: actions/upload-artifact@v2
|
||||||
## with:
|
## with:
|
||||||
|
|
Loading…
Reference in New Issue