Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Agony5757 committed May 8, 2024
1 parent c39a40e commit 682e459
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,17 @@ jobs:
submodules: 'true'

- name: Install CMake
if: runner.os == 'Linux'
run: |
if [[ "${{ runner.os }}" == "Linux" ]]; then
sudo apt-get update
sudo apt-get install -y cmake
elif [[ "${{ runner.os }}" == "Windows" ]]; then
choco install cmake
fi
shell: ${{ matrix.shell }}
sudo apt-get update
sudo apt-get install -y cmake
shell: bash

- name: Install CMake
if: runner.os == 'Windows'
run: |
choco install cmake
shell: pwsh

- name: Build
# Build your program with the given configuration
Expand Down
1 change: 1 addition & 0 deletions QPandaLiteCpp/src/simulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <vector>
#include <set>
#include <map>
#include <cstdint>

#include "errors.h"
namespace qpandalite {
Expand Down

0 comments on commit 682e459

Please sign in to comment.