diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 173acfe..774a08d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: branches: - main - dev - # - doc + - doc tags: '*' pull_request: env: @@ -47,4 +47,4 @@ jobs: - uses: codecov/codecov-action@v4 with: file: lcov.info - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 51eae48..a5c5a90 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -19,7 +19,11 @@ jobs: - uses: julia-actions/setup-julia@latest with: version: '1.10' - - run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils + - name: Install x-server + - run: apt-get update + - run: apt-get upgrade + - run: apt-get install -y cmake xorg-dev mesa-utils xvfb libgl1 freeglut3-dev +# - run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils - name: Install dependencies run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - name: Build and deploy