Ver a proveniência

Update GitHub build workflow to use CMake

pull/275/head
Jonathan GUILLOT há 2 meses
ascendente
cometimento
4899711b3a
1 ficheiros alterados com 14 adições e 2 eliminações
  1. +14
    -2
      .github/workflows/build.yml

+ 14
- 2
.github/workflows/build.yml Ver ficheiro

@@ -11,6 +11,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run build
- name: Install dependencies
run: |
./build
sudo apt-get install -y cmake

- name: Configure
run: |
cmake -S . -B build-wiringpi

- name: Build
run: |
cmake --build build-wiringpi

- name: Install
run: |
sudo cmake --install build-wiringpi --prefix /usr

Carregando…
Cancelar
Guardar