Skip to content

Commit

Permalink
Create sources_debian.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
trunkmaster authored Jul 24, 2024
1 parent f4b3862 commit ea2c304
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/sources_debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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: sudo apt-get -q -y update

- 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

0 comments on commit ea2c304

Please sign in to comment.