From b05f03714b6de2d5b633a90be31c151fbdd00e23 Mon Sep 17 00:00:00 2001 From: pvinh-spike <81987648+pvinh-spike@users.noreply.github.com> Date: Wed, 22 Sep 2021 16:49:02 -0700 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..36a5388 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build ACT + +on: + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: configure + run: sudo apt-get install make gcc libc6-dev zlib1g-dev + - name: build + run: make + - name: Upload Artifact + uses: actions/upload-artifact@v2.2.4 + with: + name: act + path: target/bin/ + if-no-files-found: error