Build the object file in Action

This commit is contained in:
Alex Ling 2020-08-04 17:24:36 +00:00
parent 4fd8334c37
commit d00b917575

View File

@ -24,8 +24,15 @@ jobs:
run: make check run: make check
- name: Run tests - name: Run tests
run: make test run: make test
- name: Upload artifact - name: Upload binary
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: mango name: mango
path: 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