GitHub Action to setup Cosmopolitan toolchain on Linux, Windows and macOS.
To setup it up, add a step to your GitHub workflow configuration :
- uses: tritao/setup-cosmopolitan@v1.0
with:
version: '3.9.2'
Cosmopolitan toolchain is added to the path so you can run any cosmos commands
after. For example, to compile your project using cosmocc
, add a step :
- name: Compile my project
run:
- cosmocc -o hello hello.c
By default, Cosmopolitan toolchain is installed in .cosmopolitan
directory
relative to the GitHub workspace. You can optionally change it using the path
input.