fixed issue where calling a method on an array element of type ptr to… #25
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
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 |