Skip to content

Commit

Permalink
Improves build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Feb 17, 2024
1 parent 5eb3051 commit 6ccf1d0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 23 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
build:
defaults:
run:
shell: bash

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Compile
run: |
gcc scrypt-jane.c -O3 -DSCRYPT_CHACHA -DSCRYPT_BLAKE512 -c
gcc example.c scrypt-jane.o -o example
23 changes: 0 additions & 23 deletions .github/workflows/c-cpp.yml

This file was deleted.

0 comments on commit 6ccf1d0

Please sign in to comment.