Compare commits
16 Commits
shared-mod
...
a4f6f199ec
| Author | SHA1 | Date | |
|---|---|---|---|
| a4f6f199ec | |||
| 911a29937e | |||
| 579826d398 | |||
| 3b1f33f055 | |||
| 607dae32fe | |||
| bb032e9daf | |||
| 886a32a9e2 | |||
| 0c58b6c436 | |||
| df3547267b | |||
| a605c4929e | |||
| a40125416d | |||
| 6777a44b3b | |||
| 288298ac18 | |||
| d461a29ff9 | |||
| bc906cd7f3 | |||
| 8ddff3fe9e |
56
.gitea/workflows/build.yaml
Normal file
56
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,56 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- 'v*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
QT_VERSION: 6.7.3
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Install Rust
|
||||
run: |
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
|
||||
- name: Install Python
|
||||
run: |
|
||||
apt update -y
|
||||
apt install -y \
|
||||
build-essential \
|
||||
cmake \
|
||||
curl
|
||||
libgl1-mesa-dev \
|
||||
python3 \
|
||||
python3-pip \
|
||||
|
||||
- name: Install aqtinstall
|
||||
run: |
|
||||
python3 -m pip install aqtinstall
|
||||
|
||||
- name: Install Qt
|
||||
run: |
|
||||
aqt install-qt linux desktop $QT_VERSION linux_gcc_64
|
||||
|
||||
- name: Build clide
|
||||
env:
|
||||
QMAKE: ${{ github.workspace }}/${{ env.QT_VERSION }}/gcc_64/bin/qmake
|
||||
run: |
|
||||
. "$HOME/.cargo/env"
|
||||
cargo b --release
|
||||
|
||||
- name: Test libclide
|
||||
run: |
|
||||
cargo test -p libclide
|
||||
|
||||
- name: Test clide
|
||||
run: |
|
||||
cargo test
|
||||
@@ -1,5 +1,7 @@
|
||||
# CLIDE
|
||||
|
||||
[](https://git.shaunreed.com/shaunrd0/clide/workflows/build.yml)
|
||||
|
||||
CLIDE is an extendable command-line driven development environment written in Rust using the Qt UI framework that supports both full and headless Linux environments.
|
||||
The GUI is written in QML compiled through Rust using the cxx-qt crate, while the TUI was implemented using the ratatui crate.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user