Compare commits
28 Commits
shared-mod
...
0ebd45ae15
| Author | SHA1 | Date | |
|---|---|---|---|
| 0ebd45ae15 | |||
| 14e7514cc1 | |||
| b3bb13fa33 | |||
| ad95056376 | |||
| 384fa51b6e | |||
| fc2a44740f | |||
| f609aa02db | |||
| fdb4f0db0b | |||
| 2d5e721a79 | |||
| 2e55ba1a4b | |||
| 6b9e3b1b40 | |||
| bdb126cab5 | |||
| a4f6f199ec | |||
| 911a29937e | |||
| 579826d398 | |||
| 3b1f33f055 | |||
| 607dae32fe | |||
| bb032e9daf | |||
| 886a32a9e2 | |||
| 0c58b6c436 | |||
| df3547267b | |||
| a605c4929e | |||
| a40125416d | |||
| 6777a44b3b | |||
| 288298ac18 | |||
| d461a29ff9 | |||
| bc906cd7f3 | |||
| 8ddff3fe9e |
50
.github/workflows/build.yaml
vendored
Normal file
50
.github/workflows/build.yaml
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- 'v*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
QT_VERSION: 6.7.3
|
||||
QMAKE: ${{ github.workspace }}/${{ env.QT_VERSION }}/gcc_64/bin/qmake
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Install apt packages
|
||||
run: |
|
||||
sudo apt update -y
|
||||
sudo 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
|
||||
run: |
|
||||
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