Overview
| Comment: | Add MorphOS build to GitHub Actions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c72e1b4034b19f38be6fa6d2eed0e5fd |
| User & Date: | js on 2021-10-17 19:35:59 |
| Other Links: | manifest | tags |
Context
|
2021-10-17
| ||
| 19:46 | Name GitHub Actions that don't run tests "build" (check-in: 585c79c2d2 user: js tags: trunk) | |
| 19:35 | Add MorphOS build to GitHub Actions (check-in: c72e1b4034 user: js tags: trunk) | |
| 14:25 | Add OFUUID (check-in: c5eb73a9c4 user: js tags: trunk) | |
Changes
Added .github/workflows/morphos.yml version [5a91f9c5f5].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
name: morphos
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
configure_flags:
-
- --disable-amiga-lib
steps:
- name: Install dependencies
run: docker pull amigadev/crosstools:ppc-morphos
- uses: actions/checkout@v2
- name: autogen.sh
run: ./autogen.sh
- name: configure
run: |
docker run \
-e PATH="/opt/ppc-morphos/bin:$PATH" \
-v "$PWD:/objfw" \
amigadev/crosstools:ppc-morphos \
sh -c 'cd /objfw && ./configure --host=ppc-morphos ${{ matrix.configure_flags }}'
- name: make
run: |
docker run \
-e PATH="/opt/ppc-morphos/bin:$PATH" \
-v "$PWD:/objfw" \
amigadev/crosstools:ppc-morphos \
sh -c "cd /objfw && make -j$(nproc)"
- name: make install
run: |
docker run \
-e PATH="/opt/ppc-morphos/bin:$PATH" \
-v "$PWD:/objfw" \
amigadev/crosstools:ppc-morphos \
sh -c "cd /objfw && make -j$(nproc)"
|