-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fcf7864
commit b9564f4
Showing
1 changed file
with
3 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,11 +43,6 @@ jobs: | |
ref: 8.13 | ||
token: ${{ secrets.AS_TOKEN }} #reniew token periodically | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.xprs }} | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
|
@@ -63,10 +58,10 @@ jobs: | |
- name: Install mandatory system libraries | ||
run: | | ||
sudo apt-get update --fix-missing | ||
sudo apt-get install libjsoncpp-dev libgtest-dev libboost-mpi-dev libboost-program-options-dev libtbb-dev | ||
sudo apt-get install -y cmake ccache libjsoncpp-dev libgtest-dev libboost-mpi-dev libboost-program-options-dev libtbb-dev | ||
cd /usr/src/googletest/ | ||
sudo cmake . | ||
sudo cmake --build . | ||
cmake . | ||
cmake --build . | ||
- name: Read antares-solver version | ||
id: antares-version | ||
|