https://github.com/egor00f/install-kolibrios-toolchain-action
installer of the gcc toolchain for colibrios in the form of github action.
https://github.com/egor00f/install-kolibrios-toolchain-action
action kolibrios toolchain-installer
Last synced: 29 days ago
JSON representation
installer of the gcc toolchain for colibrios in the form of github action.
- Host: GitHub
- URL: https://github.com/egor00f/install-kolibrios-toolchain-action
- Owner: Egor00f
- License: unlicense
- Created: 2024-10-14T10:37:36.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-11-24T07:06:58.000Z (6 months ago)
- Last Synced: 2025-03-30T07:23:17.686Z (about 2 months ago)
- Topics: action, kolibrios, toolchain-installer
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Install kolibrios toolchain action
This is the installer of the gcc toolchain for kolibrios as github action.
It using installation scripts from https://github.com/Egor00f/kolibrios-gcc-toolchain
Example:
```
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: Egor00f/install-kolibrios-toolchain-action@main- name: Test toolchain working
run: |
/home/autobuild/tools/win32/bin/kos32-gcc -v
/home/autobuild/tools/win32/bin/kos32-g++ -v
/home/autobuild/tools/win32/bin/kos32-ar -V
/home/autobuild/tools/win32/bin/kos32-objcopy -V
/home/autobuild/tools/win32/bin/kos32-strip -V
```