mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2024-11-21 21:31:01 +02:00
75 lines
2.3 KiB
YAML
75 lines
2.3 KiB
YAML
# This file is a part of the UMSKT Project
|
|
#
|
|
# Copyleft (C) 2019-2024 UMSKT Contributors (et.al.)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# @FileCreated by techguy16 on 07/23/2023
|
|
# @Maintainer techguy16
|
|
|
|
name: C/C++ CI (FreeBSD)
|
|
|
|
on:
|
|
push:
|
|
branches: [ "*" ]
|
|
paths-ignore: [ '**.md', 'doc/**', '.idea/**' ] # If only these files are edited, skip
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
paths-ignore: [ '**.md', 'doc/**', '.idea/**' ] # If only these files are edited, skip
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: build-x86_64
|
|
|
|
steps:
|
|
- name: Checkout Source Tree
|
|
uses: actions/checkout@v4.1.1
|
|
|
|
- name: Set up CPM cache
|
|
id: cache-cpm
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ github.workspace }}/.cpm-cache
|
|
key: ${{ runner.os }}-cpm-${{ hashFiles('**/') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-cpm-
|
|
|
|
- name: Build & Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/freebsd-vm@v1.0.6
|
|
with:
|
|
usesh: true
|
|
prepare: |
|
|
pkg install -y cmake git bash
|
|
|
|
run: |
|
|
mkdir build
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCPM_SOURCE_CACHE= ${{ github.workspace }}/.cpm-cache -DBUILD_TESTING=On -B build/
|
|
cmake --build build/ -j 2
|
|
cd build
|
|
ctest
|
|
|
|
- name: Move files to correct directory
|
|
run: |
|
|
mkdir -p build/actions_upload
|
|
mv build/umskt build/actions_upload/umskt
|
|
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@v4.3.1
|
|
with:
|
|
name: UMSKT-FreeBSD
|
|
path: build/actions_upload
|