Skip to content

Commit

Permalink
Update actions_dev.yml
Browse files Browse the repository at this point in the history
Creating a bin folder (it's in .gitignore)
  • Loading branch information
EnzoGuillouche committed Feb 14, 2024
1 parent 8932085 commit 31e90d9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/actions_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ jobs:
- name: Checkout repository code
uses: actions/checkout@v3
- name: Cloning the Repository
run: git clone https://github.com/algosup/2023-2024-project-3-virtual-processor-team-2
- name: Custom shell commands
run: |
echo "Start repo checkout"
echo "The ${{ github.repository }} repository has been cloned to the runner."
build:
needs: system_update
Expand All @@ -39,11 +41,14 @@ jobs:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake g++ make

- name: Checkout Google Test
run: git clone https://github.com/google/googletest.git

- name: Build Action
run: |
cd googletest
cmake -S . -B Build
echo Building
mkdir bin
cd Build
make
cd ..
Expand All @@ -57,6 +62,5 @@ jobs:
- name: Running tests
run: |
cd bin
dir
.\tests.exe
shell: cmd

0 comments on commit 31e90d9

Please sign in to comment.