Skip to content

fixed issue where calling a method on an array element of type ptr to… #25

fixed issue where calling a method on an array element of type ptr to…

fixed issue where calling a method on an array element of type ptr to… #25

Workflow file for this run

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 -H disable -m 20000 --cwd esource: -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make EVO
- name: add build artifacts to publish
run: |
mkdir output
cp $GITHUB_WORKSPACE/EVO output
cd output
lha a ../evo-dev${{ github.sha }}.lha *
- name: Update nightly release
uses: pyTooling/Actions/releaser@main
with:
tag: dev-build
rm: true
token: ${{ secrets.GITHUB_TOKEN }}
files: evo-dev${{ github.sha }}.lha