Compare commits
13 Commits
shared-mod
...
3b1f33f055
| Author | SHA1 | Date | |
|---|---|---|---|
| 3b1f33f055 | |||
| 607dae32fe | |||
| bb032e9daf | |||
| 886a32a9e2 | |||
| 0c58b6c436 | |||
| df3547267b | |||
| a605c4929e | |||
| a40125416d | |||
| 6777a44b3b | |||
| 288298ac18 | |||
| d461a29ff9 | |||
| bc906cd7f3 | |||
| 8ddff3fe9e |
47
.gitea/workflows/build.yaml
Normal file
47
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
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 \
|
||||||
|
python3 \
|
||||||
|
python3-pip \
|
||||||
|
build-essential \
|
||||||
|
cmake \
|
||||||
|
curl
|
||||||
|
|
||||||
|
- 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
|
||||||
Reference in New Issue
Block a user