Skip to content

Commit bb69ced

Browse files
committed
fix: stuff
1 parent e91dd63 commit bb69ced

File tree

10 files changed

+26
-2
lines changed

10 files changed

+26
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ permissions: write-all
1717
jobs:
1818
main:
1919
runs-on: ubuntu-latest
20+
container:
21+
options: --user root
2022
strategy:
2123
fail-fast: false
2224
matrix:

.github/workflows/build_compact.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ permissions: write-all
1212
jobs:
1313
compact:
1414
runs-on: ubuntu-latest
15+
container:
16+
options: --user root
1517
strategy:
1618
fail-fast: false
1719
matrix:
@@ -84,5 +86,7 @@ jobs:
8486
# needs: [compact]
8587
# if: always() && !contains(needs.*.result, 'failure')
8688
# runs-on: ubuntu-latest
87-
# steps:
88-
# - run: echo "All good ✨" ;
89+
# container:
90+
# options: --user root
91+
# steps:
92+
# - run: echo "All good ✨" ;

.github/workflows/docs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
check-secret:
1616
if: ${{ github.event.pull_request.head.repo.fork == false }}
1717
runs-on: ubuntu-latest
18+
container:
19+
options: --user root
1820
outputs:
1921
s3-valid-config: ${{ steps.check.outputs.s3-valid-config }}
2022

@@ -31,6 +33,8 @@ jobs:
3133
doxygen:
3234
if: ${{ github.event.pull_request.head.repo.fork == false }}
3335
runs-on: ubuntu-latest
36+
container:
37+
options: --user root
3438
needs: check-secret
3539
steps:
3640
- name: 'Wipe workspace'

.github/workflows/lint_and_submodule_check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ permissions: write-all
1111
jobs:
1212
lint_sources_check_submodules:
1313
runs-on: ubuntu-latest
14+
container:
15+
options: --user root
1416
steps:
1517
- name: 'Wipe workspace'
1618
run: find ./ -mount -maxdepth 1 -exec rm -rf {} \;

.github/workflows/merge_report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ permissions: write-all
1212
jobs:
1313
merge_report:
1414
runs-on: ubuntu-latest
15+
container:
16+
options: --user root
1517
steps:
1618
- name: 'Wipe workspace'
1719
run: find ./ -mount -maxdepth 1 -exec rm -rf {} \;

.github/workflows/pvs_studio.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
analyse_c_cpp:
1818
if: ${{ !github.event.pull_request.head.repo.fork }}
1919
runs-on: ubuntu-latest
20+
container:
21+
options: --user root
2022
steps:
2123
- name: 'Wipe workspace'
2224
run: find ./ -mount -maxdepth 1 -exec rm -rf {} \;

.github/workflows/reindex.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
reindex:
1010
name: 'Post-release hooks'
1111
runs-on: ubuntu-latest
12+
container:
13+
options: --user root
1214
steps:
1315
- name: 'Checkout code'
1416
uses: actions/checkout@v4

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ permissions: write-all
1212
jobs:
1313
run_units_on_bench:
1414
runs-on: ubuntu-latest
15+
container:
16+
options: --user root
1517
steps:
1618
- name: Checkout code
1719
uses: actions/checkout@v4

.github/workflows/updater_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ permissions: write-all
1212
jobs:
1313
test_updater_on_bench:
1414
runs-on: ubuntu-latest
15+
container:
16+
options: --user root
1517
steps:
1618
- name: Checkout code
1719
uses: actions/checkout@v4

scripts/ufbt/project_template/app_template/.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ on:
1616
jobs:
1717
ufbt-build:
1818
runs-on: ubuntu-latest
19+
container:
20+
options: --user root
1921
strategy:
2022
matrix:
2123
include:

0 commit comments

Comments
 (0)