Skip to content

Commit

Permalink
Add a workflow to build ping and save the artifact
Browse files Browse the repository at this point in the history
Be aware: this build artifact works only on Linux x86_64, if your system is different, you will have to build it yourself (bruh cmon like Linux is so cool this tool wont even work on windows or mac)
  • Loading branch information
makstamoian authored Jun 20, 2024
1 parent ad5b1bc commit e22b914
Showing 1 changed file with 26 additions and 0 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 ping

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
- run: make

- name: Archive build artifact (Linux x86_64 exclusive)
uses: actions/upload-artifact@v4
with:
name: ping
path: ping


0 comments on commit e22b914

Please sign in to comment.