File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,11 @@ jobs:
16
16
submodules : recursive
17
17
- name : Create build directory and run CMake
18
18
run : |
19
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
19
20
sudo apt-get -y update
20
- sudo apt-get -y install doxygen graphviz freeglut3-dev libmotif-dev libxpm-dev libxmu-dev
21
+ sudo apt-get -y install gcc-13 doxygen graphviz freeglut3-dev libmotif-dev libxpm-dev libxmu-dev
21
22
mkdir cmake_download_dir
22
- DOWNLOAD_FILE_COIN=coin-latest-Ubuntu2204-gcc11 -x64.tar.gz
23
+ DOWNLOAD_FILE_COIN=coin-latest-Ubuntu2204-gcc13 -x64.tar.gz
23
24
RELEASE_ID=`curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/coin3d/coin/releases | jq -r --arg COIN_REPO_TAG_NAME "CI-builds" '.[] | select(.tag_name==$COIN_REPO_TAG_NAME) | .id'`
24
25
ASSET_ID=`curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/coin3d/coin/releases/$RELEASE_ID | jq -r --arg DOWNLOAD_FILE_COIN "$DOWNLOAD_FILE_COIN" '.assets[] | select(.name==$DOWNLOAD_FILE_COIN) | .id'`
25
26
export DOWNLOAD_ADDRESS_COIN=https://api.github.com/repos/coin3d/coin/releases/assets/$ASSET_ID
You can’t perform that action at this time.
0 commit comments