Skip to content

Commit

Permalink
use default installation path
Browse files Browse the repository at this point in the history
  • Loading branch information
lrlunin committed Mar 27, 2024
1 parent 73db4c0 commit 50793bc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,19 @@ jobs:
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- name: Set coer counter

- name: Set core counter
run: echo "CPU_CORES=${{ steps.cpu-cores.outputs.count }}" >> $GITHUB_ENV

- name: Install both own, tango and slsDetectorPackage dependencies
run: sudo apt-get install -y libzmq3-dev libtiff-dev libhdf5-dev libfmt-dev rapidjson-dev libboost-dev libmariadb-dev zlib1g-dev libomniorb4-dev libcos4-dev omniidl

- name: Download and extract tango
run: wget https://gitlab.com/api/v4/projects/24125890/packages/generic/TangoSourceDistribution/9.3.5/tango-9.3.5.tar.gz

- name: Untar, cd, configure, compile and install
run: tar xzvf tango-9.3.5.tar.gz && cd tango-9.3.5 && ./configure --prefix=/usr/local/tango && make -j$CPU_CORES && sudo make install
run: tar xzvf tango-9.3.5.tar.gz && cd tango-9.3.5 && ./configure && make -j$CPU_CORES && sudo make install

- name: Fetch slsDetectorPackage
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 50793bc

Please sign in to comment.