Skip to content

Commit

Permalink
modify workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guozhengxuan committed Sep 4, 2024
1 parent 4216f1f commit 31f9dc4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ jobs:
- name: install Ubuntu dependencies
run: |
sudo apt update
sudo apt install -y git curl build-essential cmake
sudo apt install -y git curl build-essential cmake gcc-12 g++12
- name: vcpkg essentials
run: |
git clone https://github.com/microsoft/vcpkg.git
echo "VCPKG_ROOT=$(pwd)/vcpkg" >> "$GITHUB_ENV"
echo "PATH=$PATH:$VCPKG_ROOT" >> "$GITHUB_ENV"
- name: configure
run: |
export GCC='gcc-10'
export CXX='g++-10'
export GCC='gcc-12'
export CXX='g++-12'
cmake --preset=test
- name: compile
run: cmake --build build -j2
Expand All @@ -90,16 +90,16 @@ jobs:
- name: install Ubuntu dependencies
run: |
sudo apt-get update
sudo apt-get install -y git curl build-essential cmake lcov libzstd-dev python3-dev
sudo apt-get install -y git curl build-essential cmake lcov libzstd-dev python3-dev gcc-12 g++12
- name: vcpkg essentials
run: |
git clone https://github.com/microsoft/vcpkg.git
echo "VCPKG_ROOT=$(pwd)/vcpkg" >> "$GITHUB_ENV"
echo "PATH=$PATH:$VCPKG_ROOT" >> "$GITHUB_ENV"
- name: configure
run: |
export GCC='gcc-10'
export CXX='g++-10'
export GCC='gcc-12'
export CXX='g++-12'
export CPATH=/Library/Developer/CommandLineTools/usr/include/c++/v1
cmake --preset=test
- name: compile
Expand Down
1 change: 1 addition & 0 deletions ipa/ipa/IPAUtility.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "IPAUtility.h"
#include "cmath"

namespace verkle::ipa
{
Expand Down

0 comments on commit 31f9dc4

Please sign in to comment.