-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix os4 issues with penmap and bitmap objects
add gitgub workflow
- Loading branch information
Showing
3 changed files
with
45 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,43 @@ | ||
name: Makefile CI | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: dmcoles/amiga-evo-cicd | ||
credentials: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: run build | ||
run: | | ||
vamos -c /usr/amiga/.vamosrc --cwd esource: -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make build=release | ||
- name: add build artifacts to publish | ||
run: | | ||
apk add lha | ||
mkdir downloads | ||
mkdir downloads/utils | ||
cp $GITHUB_WORKSPACE/rebuild downloads | ||
cp $GITHUB_WORKSPACE/rebuild.info downloads | ||
cp $GITHUB_WORKSPACE/Rebuild_manual.txt downloads | ||
cp $GITHUB_WORKSPACE/Rebuild_manual.txt.info downloads | ||
cd downloads | ||
lha a ../rebuild-nightly${{ github.sha }}.lha * | ||
ls ../ | ||
- name: Update nightly release | ||
uses: pyTooling/Actions/releaser@main | ||
with: | ||
tag: dev-build | ||
rm: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
files: rebuild-nightly${{ github.sha }}.lha |
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