-
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 #155 from afxgroup/beta10
Merged Beta10 into master
- Loading branch information
Showing
26 changed files
with
760 additions
and
344 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,26 @@ | ||
name: Build with Docker | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- actions-cicd | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run: | ||
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@v2 | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
|
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,38 @@ | ||
name: Make a new release | ||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
run: | ||
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@v2 | ||
- 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 && \ | ||
mv clib4.lha clib4-${{ github.event.release.tag_name }}.lha | ||
- name: Upload Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: /opt/code/clib4-${{ github.event.release.tag_name }}.lha | ||
asset_name: clib4-${{ github.event.release.tag_name }}.lha | ||
asset_content_type: application/x-lzh-compressed | ||
# - name: Release on OS4Depot | ||
# - name: Release on Aminet | ||
# - name: Prepare Ubuntu apt packages | ||
# - name: Release on Ubuntu apt server |
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.