Disable os4depot release #2
Workflow file for this run
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: Pull request build | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- opened | |
- reopened | |
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@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 |