-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #163 from walkero-gr/actions-cicd
Github Actions
- Loading branch information
Showing
5 changed files
with
107 additions
and
14 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
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,26 @@ | ||
name: Merge into master build | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
types: | ||
- closed | ||
|
||
jobs: | ||
run_if_merged: | ||
if: github.event.pull_request.merged == true | ||
name: Build latest code | ||
runs-on: ubuntu-latest | ||
container: | ||
image: walkero/amigagccondocker:os4-gcc11-exp | ||
volumes: | ||
- '${{ github.workspace }}:/opt/code' | ||
steps: | ||
- name: Pull code | ||
uses: actions/checkout@v4 | ||
- name: Compile clib4 | ||
run: | | ||
cd /opt/code && \ | ||
make -j1 -f GNUmakefile.os4 OS=os4 SHARED=no | ||
- name: Create the release archive | ||
run: make -f GNUmakefile.os4 release |
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
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
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,28 @@ | ||
name: clib4 | ||
description: clib4 library | ||
version: VERSION_TAG | ||
author: Andrea Palmatè | ||
submitter: Andrea Palmatè | ||
email: andrea@amigasoft.net | ||
url: https://github.com/AmigaLabs/clib4 | ||
category: development/library/misc | ||
replaces: development/library/misc/clib4.lha | ||
requirements: adtools | ||
license: BSD | ||
minosversion: 4.1 | ||
distribute: yes | ||
passphrase: OS4DEPOT_PASSPHRASE | ||
hend: | ||
This is a fork of official clib2 present in adtools. The point of this | ||
library is to make it Amiga OS4 only to maintain it easily and add all the | ||
missing clib2 features that are difficult to add also on classic Amigas. | ||
Classic Amigas has also ixemul that is the most complete, POSIX compliant, | ||
library we have. It is a useless share code that most probably no one will | ||
use. The goal is to try to make it POSIX compliant and fix also all the C++ | ||
problems we have with newer compilers. All warnings (except really few ones) | ||
produced by GCC 10 and above are now gone. | ||
|
||
All deprecated OS4 functions are replaced by modern OS4 one. | ||
|
||
If you find any issue, please let us know at: | ||
https://github.com/AmigaLabs/clib4/issues |