Some checks failed
Build / Build (pull_request) Failing after 4s
Build / Test (pull_request) Failing after 4s
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
Build:
|
|
name: Build
|
|
container:
|
|
image: ubuntu:latest
|
|
volumes:
|
|
- build-artifacts:/workspace/artifacts
|
|
env:
|
|
QT_VERSION: 6.7.3
|
|
QMAKE: ${{ github.workspace }}/${{ env.QT_VERSION }}/gcc_64/bin/qmake
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
- name: Install apt packages
|
|
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
|
|
run: |
|
|
. "$HOME/.cargo/env"
|
|
cargo b --release
|
|
|
|
- name: Copy build artifacts
|
|
run: cp -r target/ /workspace/artifacts/
|
|
|
|
Test:
|
|
name: Test
|
|
container:
|
|
image: ubuntu:latest
|
|
volumes:
|
|
- build-artifacts:/workspace/artifacts
|
|
steps:
|
|
- name: Copy build artifacts
|
|
run: cp -r /workspace/artifacts/target/ .
|
|
|
|
- name: Test libclide
|
|
run: |
|
|
. "$HOME/.cargo/env"
|
|
cargo test -p libclide
|
|
|
|
- name: Test clide
|
|
run: |
|
|
. "$HOME/.cargo/env"
|
|
cargo test
|