Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/panquesito7/setup-jule
Setup a JuleC development environment in your project.
https://github.com/panquesito7/setup-jule
action-composite actions c clang composite composite-action cpp hacktoberfest jule julec julelang programming
Last synced: 30 days ago
JSON representation
Setup a JuleC development environment in your project.
- Host: GitHub
- URL: https://github.com/panquesito7/setup-jule
- Owner: Panquesito7
- License: mit
- Created: 2023-07-30T08:57:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T16:23:09.000Z (about 1 year ago)
- Last Synced: 2024-05-01T17:06:20.744Z (7 months ago)
- Topics: action-composite, actions, c, clang, composite, composite-action, cpp, hacktoberfest, jule, julec, julelang, programming
- Homepage:
- Size: 29.3 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
[![Action validation](https://github.com/Panquesito7/setup-jule/actions/workflows/test.yml/badge.svg)](https://github.com/Panquesito7/setup-jule/actions/workflows/test.yml)
Easily setup a [JuleC](https://jule.dev) development environment in your project with GitHub Actions.\
Very useful when your project is built in the Jule programming language.## Usage
Here's a basic workflow usage that you can use.\
For full information, check out [`action.yml`](https://github.com/Panquesito7/setup-jule/blob/main/action.yml).```yml
name: Setup Jule
on: [push]
jobs:
jule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Panquesito7/[email protected]
with:
version: latest # https://github.com/julelang/jule/releases for all JuleC versions.
directory: . # The directory where JuleC will be installed.
architecture: amd64 # Architecture that will be used. Valid options are `amd64`, `arm64`, and `i386` (optional).
add-to-path: false # Whether to add JuleC to the PATH or not (optional).
extra-command: version # Extra command that will be run after compiling JuleC (optional; see below for more information).
```### Version syntax
Release syntax is taken from the official [JuleC releases](https://github.com/julelang/jule/releases).
- `latest` and `current` for the latest release.
- `dev` for the latest commit.
- `beta-0.x.x` (there are no stable releases for now).### Architecture
The architecture that will be used to install JuleC.\
`arm64`, `amd64`, and `i386` (Linux only) can be used. `amd64` is the recommended architecture.### Extra command
An extra command will be run after compiling and installing JuleC.\
You can see the full list of commands in the [official manual](https://manual.jule.dev/compiler/basic-commands.html).> **Note**
>
> The manual is updated and based on the latest Jule commits.\
> However, the IR file might not be up-to-date, meaning that new commands won't work.```yml
- uses: actions/checkout@v4
- uses: Panquesito7/[email protected]
with:
version: beta-0.0.2
directory: ./libs
architecture: amd64
add-to-path: true
extra-command: version
```## Supported operating systems
Currently, macOS and Linux are supported, just like JuleC itself.\
Windows support will be added once JuleC supports Windows.For more information:
## License
See the [`LICENSE.md`](https://github.com/Panquesito7/setup-jule/blob/main/LICENSE.md) file for more information.