Update CI deps (#119)
This commit is contained in:
parent
f8888b81e8
commit
fbd327dadf
|
|
@ -12,7 +12,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: crowdin action
|
- name: crowdin action
|
||||||
uses: crowdin/github-action@master
|
uses: crowdin/github-action@master
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
@ -35,13 +35,14 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Set up JDK 11
|
- name: Set up JDK 11
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
|
cache: 'gradle'
|
||||||
|
|
||||||
- name: Cache gradle dependencies
|
- name: Cache gradle dependencies
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.gradle/caches
|
~/.gradle/caches
|
||||||
|
|
@ -52,7 +53,7 @@ jobs:
|
||||||
gradle-deps
|
gradle-deps
|
||||||
|
|
||||||
- name: Cache gradle build
|
- name: Cache gradle build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.gradle/caches/build-cache-*
|
~/.gradle/caches/build-cache-*
|
||||||
|
|
@ -62,7 +63,7 @@ jobs:
|
||||||
gradle-builds
|
gradle-builds
|
||||||
|
|
||||||
- name: Cache native build
|
- name: Cache native build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.ccache
|
~/.ccache
|
||||||
|
|
@ -91,19 +92,19 @@ jobs:
|
||||||
ccache -s
|
ccache -s
|
||||||
|
|
||||||
- name: Upload Debug artifact
|
- name: Upload Debug artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: lspatch-debug
|
name: lspatch-debug
|
||||||
path: out/debug/*
|
path: out/debug/*
|
||||||
|
|
||||||
- name: Upload Release artifact
|
- name: Upload Release artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: lspatch-release
|
name: lspatch-release
|
||||||
path: out/release/*
|
path: out/release/*
|
||||||
|
|
||||||
- name: Upload mappings
|
- name: Upload mappings
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: mappings
|
name: mappings
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -111,7 +112,7 @@ jobs:
|
||||||
manager/build/outputs/mapping
|
manager/build/outputs/mapping
|
||||||
|
|
||||||
- name: Upload symbols
|
- name: Upload symbols
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: symbols
|
name: symbols
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue