termux-docker icon indicating copy to clipboard operation
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?

Open Freed-Wu opened this issue 1 year ago • 1 comments

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-*

Freed-Wu avatar May 20 '23 02:05 Freed-Wu

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...

twaik avatar Dec 19 '23 17:12 twaik