Index: .github/workflows/amiga-gcc.yml ================================================================== --- .github/workflows/amiga-gcc.yml +++ .github/workflows/amiga-gcc.yml @@ -2,20 +2,15 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest container: amigadev/crosstools:m68k-amigaos - strategy: - matrix: - configure_flags: - - - - --disable-amiga-lib steps: - uses: actions/checkout@v2 - name: autogen.sh run: ./autogen.sh - name: configure - run: ./configure --host=m68k-amigaos ${{ matrix.configure_flags }} + run: ./configure --host=m68k-amigaos - name: make run: make -j$(nproc) - name: make install run: make install Index: .github/workflows/morphos.yml ================================================================== --- .github/workflows/morphos.yml +++ .github/workflows/morphos.yml @@ -2,20 +2,15 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest container: amigadev/crosstools:ppc-morphos - strategy: - matrix: - configure_flags: - - - - --disable-amiga-lib steps: - uses: actions/checkout@v2 - name: autogen.sh run: ./autogen.sh - name: configure - run: ./configure --host=ppc-morphos ${{ matrix.configure_flags }} + run: ./configure --host=ppc-morphos - name: make run: make -j$(nproc) - name: make install run: make install