Skip to content

Commit 30c30be

Browse files
Update documentation-workflow.yml
1 parent 1485ae0 commit 30c30be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/documentation-workflow.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ jobs:
1616
submodules: recursive
1717
- name: Create build directory and run CMake
1818
run: |
19+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
1920
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
2122
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
2324
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'`
2425
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'`
2526
export DOWNLOAD_ADDRESS_COIN=https://api.github.com/repos/coin3d/coin/releases/assets/$ASSET_ID

0 commit comments

Comments
 (0)