Skip to content

Commit

Permalink
Create cmake-ubuntu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oyama authored Jun 8, 2024
1 parent 98c16c2 commit c459ed2
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/cmake-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CMake on Ubuntu latest
on: [push, pull_request]
env:
BUILD_TYPE: Release

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Clean workspace
run: |
echo "Cleaning up previous run"
rm -rf "${{ github.workspace }}"
mkdir -p "${{ github.workspace }}"
- name: Install build GNU Arm Embedded Toolchain
run: |
sudo apt-get -qq update
sudo apt-get -qq install gcc-arm-none-eabi
- name: Checkout pico-sdk/master
uses: actions/checkout@v4
with:
repository: raspberrypi/pico-sdk
ref: master
path: pico-sdk

- name: Checkout pico-sdk submodules
working-directory: ${{github.workspace}}/pico-sdk
run: git submodule update --init

- name: Checkout pico-vfs
uses: actions/checkout@v4
with:
path: pico-vfs

- name: Checkout pico-vfs submodules
working-directory: ${{github.workspace}}/pico-vfs
run: git submodule update --init --recursive

- name: Create Build Environment
working-directory: ${{github.workspace}}/pico-vfs
run: cmake -E make_directory ${{github.workspace}}/pico-vfs/build

- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/pico-vfs/build
run: PICO_SDK_PATH=../../pico-sdk cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{github.workspace}}/pico-vfs/build
shell: bash
run: cmake --build . --target tests --config $BUILD_TYPE

0 comments on commit c459ed2

Please sign in to comment.