Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Cmake GH Action
Browse files Browse the repository at this point in the history
  • Loading branch information
eoussama committed Jan 9, 2024
1 parent e4e2266 commit 7cb5c8a
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,28 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@main
- name: build application
run: make run
- name: Checkout repo
uses: actions/checkout@v2

- name: Install CMake and GNU Make
run: sudo apt-get -y install cmake make

- name: Change to Build Directory
run: cd build

- name: Run CMake
run: cmake ..

- name: Build Application
run: make

- name: Run diviser_pour_regner
run: make run_diviser_pour_regner

- name: Run methodes_gloytonnes
run: make run_methodes_gloytonnes

- name: Run programmation_dynamique
run: make run_programmation_dynamique

0 comments on commit 7cb5c8a

Please sign in to comment.