Skip to content

add: GitHub actions building #5

add: GitHub actions building

add: GitHub actions building #5

Workflow file for this run

name: Build FrequenC
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt-get install -y libssl-dev clang make
- name: Build
env:
GITHUB_SHA: ${{ github.sha }}
GITHUB_BRANCH: ${{ github.ref_name }}
run: CFLAGS="-Ofast -fno-signed-zeros -fno-trapping-math -funroll-loops" make
- name: Archive Build
uses: actions/upload-artifact@v2
with:
name: build-artifact
path: FrequenC