Overview
| Comment: | Name GitHub Actions that don't run tests "build" |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
585c79c2d26ffbf12da31ce47810077c |
| User & Date: | js on 2021-10-17 19:46:00 |
| Other Links: | manifest | tags |
Context
|
2021-10-18
| ||
| 00:02 | OFUUID: -[initWithUUIDBytes:] & -[getUUIDBytes:] (check-in: 7d94c3ed89 user: js tags: trunk) | |
|
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) | |
Changes
Modified .github/workflows/amiga-gcc.yml from [b686740212] to [16471286d2].
1 2 3 | name: amiga-gcc on: [push, pull_request] jobs: | < > | 1 2 3 4 5 6 7 8 9 10 11 |
name: amiga-gcc
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
configure_flags:
-
- --disable-amiga-lib
steps:
|
| ︙ | ︙ |
Modified .github/workflows/ios.yml from [dfaaa1befb] to [dd34f22809].
1 2 3 | name: ios on: [push, pull_request] jobs: | < > | 1 2 3 4 5 6 7 8 9 10 11 |
name: ios
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
arch:
- arm64
- x86_64
configure_flags:
|
| ︙ | ︙ |
Modified .github/workflows/morphos.yml from [5a91f9c5f5] to [0f27c2ab37].
1 2 3 | name: morphos on: [push, pull_request] jobs: | < > | 1 2 3 4 5 6 7 8 9 10 11 |
name: morphos
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
configure_flags:
-
- --disable-amiga-lib
steps:
|
| ︙ | ︙ |
Modified .github/workflows/nintendo-3ds.yml from [e0b6f33d3b] to [67061ee611].
1 2 3 | name: nintendo-3ds on: [push, pull_request] jobs: | < > | 1 2 3 4 5 6 7 8 9 10 11 |
name: nintendo-3ds
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: docker pull devkitpro/devkitarm
- uses: actions/checkout@v2
- name: autogen.sh
run: ./autogen.sh
|
| ︙ | ︙ |
Modified .github/workflows/nintendo-ds.yml from [d9db2db1e7] to [3d41e0f5f7].
1 2 3 | name: nintendo-ds on: [push, pull_request] jobs: | < > | 1 2 3 4 5 6 7 8 9 10 11 |
name: nintendo-ds
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: docker pull devkitpro/devkitarm
- uses: actions/checkout@v2
- name: autogen.sh
run: ./autogen.sh
|
| ︙ | ︙ |
Modified .github/workflows/wii.yml from [4585ba4b5f] to [39c842705b].
1 2 3 | name: wii on: [push, pull_request] jobs: | < > | 1 2 3 4 5 6 7 8 9 10 11 |
name: wii
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: docker pull devkitpro/devkitppc
- uses: actions/checkout@v2
- name: autogen.sh
run: ./autogen.sh
|
| ︙ | ︙ |