termux-docker
termux-docker copied to clipboard
Is it possible to provide a action.yml to make it a github action to support build software in termux?
Is it possible to provide a action.yml to make it a github action to support build package in termux?
Such as:
.github/workflow/main.yml
:
jobs:
build-in-termux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: termux/[email protected]
with:
platforms: x86_64, aarch64 # all
run: |
gcc main.c -o main-{{ platform }}
output: main-*
- uses: actions/upload-artifact@v3
with:
path: |
main-*
You are trying to clone termux-docker's repo. This way you do not invoke docker, you are only getting a set of files to build docker environment...