From d00b917575e9f0dfe6a2e54cda59febc4cd5a16b Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Tue, 4 Aug 2020 17:24:36 +0000 Subject: [PATCH] Build the object file in Action --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37d86c6..6bcf733 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,8 +24,15 @@ jobs: run: make check - name: Run tests run: make test - - name: Upload artifact + - name: Upload binary uses: actions/upload-artifact@v2 with: name: mango path: mango + - name: build arm32v7 object file + run: make arm32v7 + - name: Upload object files + uses: actions/upload-artifact@v2 + with: + name: object files + path: *.o