Skip to content

Commit

Permalink
Github Actions: Add faster CI build for pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrossard committed Aug 5, 2023
1 parent 83d713f commit 1165a78
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ on:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_dispatch:

jobs:
Expand Down
68 changes: 68 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build DAPLink PR (Linux)
on:
pull_request:
branches:
- main
- develop
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
gcc: ['10.3-2021.10']

steps:
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: ${{ matrix.gcc }}
path-env-var: ARM_NONE_EABI_GCC_PATH

- name: Cache Python modules
id: cache-python
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Checkout source files
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install Python module
run: |
pip3 install --user -r requirements.txt
- name: Install dependencies
run: |
sudo apt install -y ccache ninja-build
arm-none-eabi-gcc -v | tee log.txt
(git status; git log -1)>> log.txt
- name: Cache CCache
id: ccache
uses: actions/cache@v3
with:
path: .ccache
key: ${{ runner.os }}-gcc-${{ matrix.gcc }}-${{ hashFiles('log.txt') }}
restore-keys: |
${{ runner.os }}-gcc-${{ matrix.gcc }}-
- name: Configure CCache
run: |
ccache --set-config=cache_dir="$GITHUB_WORKSPACE/.ccache"
ccache --set-config=max_size=2Gi
ccache -s -z
- name: Compile
run: |
export PATH="/usr/lib/ccache:$ARM_NONE_EABI_GCC_PATH:/home/runner/.local/bin:$PATH"
progen generate -t cmake_gcc_arm global_workspace
cmake -DCMAKE_C_COMPILER_LAUNCHER=ccache -GNinja -S projectfiles/cmake_gcc_arm -B projectfiles/cmake_gcc_arm
ninja -C projectfiles/cmake_gcc_arm
ccache -s

0 comments on commit 1165a78

Please sign in to comment.