-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2824f2e
commit 61a438c
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Fedora 41 | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
container: amd64/fedora:41 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install build tools | ||
run: dnf -y install sudo git openssh-clients which binutils binutils-gold curl clang | ||
- name: Build Apple libraries | ||
run: | | ||
cd Packaging/Sources | ||
./1_build_libcorefoundation.sh | ||
- name: Build Objective-C runtime | ||
run: | | ||
cd Packaging/Sources | ||
./2_build_libobjc2.sh | ||
- name: Build GNUstep build tools | ||
run: | | ||
cd Packaging/Sources | ||
./3_build_core.sh | ||
./3_build_tools-make.sh | ||
- name: Build WRaster | ||
run: | | ||
cd Packaging/Sources | ||
./4_build_libwraster.sh | ||
- name: Build GNUstep Foundation | ||
run: | | ||
cd Packaging/Sources | ||
./5_build_libs-base.sh | ||
- name: Build GNUstep AppKit | ||
run: | | ||
cd Packaging/Sources | ||
./6_build_libs-gui.sh | ||
- name: Build GNUstep Backend | ||
run: | | ||
cd Packaging/Sources | ||
./7_build_libs-back.sh | ||
- name: Build Frameworks | ||
run: | | ||
cd Packaging/Sources | ||
./8_build_Frameworks.sh | ||
- name: Build Applications | ||
run: | | ||
cd Packaging/Sources | ||
./9_build_Applications.sh |