Skip to content

Commit

Permalink
Merge pull request #82 from Okkoma/master
Browse files Browse the repository at this point in the history
CI Linux and QA update
  • Loading branch information
klaussilveira authored Dec 17, 2024
2 parents c252464 + 82b9ee2 commit 4743398
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
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

0 comments on commit 4743398

Please sign in to comment.