Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/autotools-cross-mips.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Autotools-cross-MIPS

on: [push, pull_request]

permissions: read-all

jobs:

AutoMakeBuild:
Expand Down Expand Up @@ -60,7 +62,7 @@ jobs:
cflags: -mips64r2 -mdsp,
}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install QEMU
run: sudo apt-get update && sudo apt-get install -y qemu-user
- name: Install prebuilt toolchain
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Autotools

on: [push, pull_request]

permissions: read-all

jobs:

AutoMakeBuild:
Expand Down Expand Up @@ -36,7 +38,7 @@ jobs:
buildconfig: --enable-assertions --enable-custom-modes --enable-dred --enable-osce
}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
# No AutoMake on Mac so let's install it
- name: Install AutoConf, AutoMake and LibTool on MacOSX
if: matrix.config.os == 'macos-latest'
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ on: [push, pull_request]
env:
NDK_VERSION: 27.3.13750724

permissions: read-all

jobs:
CMakeVersionTest:
name: Test build with CMake 3.16.0
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Download models
Expand Down Expand Up @@ -40,7 +42,7 @@ jobs:
name: CMake MINGW
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Download models
Expand Down Expand Up @@ -228,7 +230,7 @@ jobs:
}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Install AutoConf, AutoMake and LibTool # Needed for autogen.sh
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/dred.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on: [push, pull_request]
env:
NDK_VERSION: 27.3.13750724

permissions: read-all

jobs:
CMakeBuild:
name: CMake/${{ matrix.config.name }}
Expand Down Expand Up @@ -58,7 +60,7 @@ jobs:
args: -G "Unix Makefiles" -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64
}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Install AutoConf, AutoMake and LibTool # Needed for autogen.sh
Expand Down Expand Up @@ -108,7 +110,7 @@ jobs:
automakeconfig:
}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Install AutoConf, AutoMake and LibTool on MacOSX
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Makefile

on: [push, pull_request]

permissions: read-all

jobs:

MakefileBuild:
Expand All @@ -17,7 +19,7 @@ jobs:
compiler: gcc,
}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Build
run: make -f Makefile.unix -j 2
- name: Test
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ name: Repository

on: [push, pull_request]

permissions: read-all

jobs:
CheckTrailingWhiteSpaces:
name: Check trailing white spaces
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Check Whitespaces
Expand Down