mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-04-22 06:02:06 +02:00
fix permissions again!
This commit is contained in:
parent
6660eede36
commit
473502dd50
1 changed files with 14 additions and 7 deletions
21
.github/workflows/build-linux.yml
vendored
21
.github/workflows/build-linux.yml
vendored
|
@ -84,13 +84,6 @@ jobs:
|
||||||
- name: Checkout branch
|
- name: Checkout branch
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
|
||||||
- name: Give all permissions for repo folder
|
|
||||||
shell: bash
|
|
||||||
working-directory: ${{ github.workspace }}
|
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
|
||||||
|
|
||||||
### deps
|
### deps
|
||||||
- name: Lookup cache for deps
|
- name: Lookup cache for deps
|
||||||
id: emu-deps-cache-step
|
id: emu-deps-cache-step
|
||||||
|
@ -119,6 +112,13 @@ jobs:
|
||||||
ref: 'third-party/deps/common'
|
ref: 'third-party/deps/common'
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common"
|
||||||
|
|
||||||
|
### fix folder permissions! not sure why this fails
|
||||||
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
|
- name: Give all permissions for repo folder
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
- name: Build deps
|
- name: Build deps
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
@ -136,6 +136,13 @@ jobs:
|
||||||
ref: 'third-party/build/linux'
|
ref: 'third-party/build/linux'
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/linux"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/linux"
|
||||||
|
|
||||||
|
### fix folder permissions! not sure why this fails
|
||||||
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
|
- name: Give all permissions for repo folder
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
### build (release mode)
|
### build (release mode)
|
||||||
- name: Build release mode
|
- name: Build release mode
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue