-
Notifications
You must be signed in to change notification settings - Fork 69
48 lines (39 loc) · 1008 Bytes
/
sources_debian.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Debian 12
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-22.04
container: amd64/debian:12
steps:
- uses: actions/checkout@v3
- name: APT update
run: |
apt-get -q -y update
apt-get -y -q install sudo curl cmake clang git
- name: Build core libraries
run: |
cd Packaging/Sources
./0_build_libdispatch.sh
./1_build_libcorefoundation.sh
./2_build_libobjc2.sh
./3_build_core.sh
./3_build_tools-make.sh
./4_build_libwraster.sh
- name: Build GNUstep
run: |
cd Packaging/Sources
./5_build_libs-base.sh
./6_build_libs-gui.sh
./7_build_libs-back.sh
- name: Build NextSpace frameworks
run: |
cd Packaging/Sources
./8_build_Frameworks.sh
- name: Build NextSpace applications
run: |
cd Packaging/Sources
./9_build_Applications.sh