Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI Linux and QA update #82

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
jobs:
android:
name: 📱
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
jobs:
docs:
name: 📖 Documentation
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: true
env:
Expand All @@ -34,13 +34,13 @@ jobs:
LLVM_ENABLE_ASSERTIONS: 1
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Source checksum
id: source_checksum
run: rake source_checksum
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
build/cache/.ccache
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Documentation
run: script/dockerized.sh ${PLATFORM/-*} rake doc
- name: Deploy Documentation to Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./Docs/html/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
jobs:
linux:
name: 🐧
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
jobs:
qa:
name: 🔬 Quality Assurance
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: true
env:
Expand All @@ -18,18 +18,19 @@ jobs:
LIB_TYPE: shared
ARCH: 64
DBE_TAG: master
URHO3D_DOCS: 1
USE_CCACHE: 1
LLVM_USE_SPLIT_DWARF: 1
LLVM_ENABLE_ASSERTIONS: 1
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Source checksum
id: source_checksum
run: rake source_checksum
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
build/cache/.ccache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
jobs:
web:
name: Web
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down