Compare commits

...

6 Commits

Author SHA1 Message Date
e4ab103c4d testing ci
Some checks failed
Create tag and build when new code gets to main / BumpTag (push) Successful in 23s
Create tag and build when new code gets to main / Export (push) Failing after 1m15s
Create tag and build when new code gets to main / Test (push) Successful in 4m43s
2026-01-28 15:33:56 +01:00
3b6cf0252b testing ci
Some checks failed
Create tag and build when new code gets to main / Test (push) Failing after 13s
Create tag and build when new code gets to main / BumpTag (push) Successful in 30s
Create tag and build when new code gets to main / Export (push) Failing after 45s
2026-01-28 15:29:31 +01:00
e908cd3085 testing ci
Some checks failed
Create tag and build when new code gets to main / Test (push) Failing after 14s
Create tag and build when new code gets to main / BumpTag (push) Failing after 24s
Create tag and build when new code gets to main / Export (push) Failing after 51s
2026-01-28 15:19:04 +01:00
6b23fdbd26 testing ci
Some checks failed
Create tag and build when new code gets to main / Test (push) Failing after 12s
Create tag and build when new code gets to main / BumpTag (push) Failing after 22s
Create tag and build when new code gets to main / Export (push) Failing after 1m29s
2026-01-28 15:13:11 +01:00
ea6258ff19 testing ci
Some checks failed
Create tag and build when new code gets to main / Test (push) Failing after 12s
Create tag and build when new code gets to main / BumpTag (push) Failing after 21s
Create tag and build when new code gets to main / Export (push) Failing after 53s
2026-01-28 15:05:12 +01:00
5e54f0f83b testing ci
Some checks failed
Create tag and build when new code gets to main / Test (push) Failing after 12s
Create tag and build when new code gets to main / BumpTag (push) Successful in 23s
Create tag and build when new code gets to main / Export (push) Failing after 55s
2026-01-28 15:00:24 +01:00

View File

@@ -22,6 +22,7 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
token: ${{ secrets.TOKEN }}
lfs: false lfs: false
- name: Remove buggy pre-push hook - name: Remove buggy pre-push hook
run: | run: |
@@ -39,28 +40,44 @@ jobs:
Test: Test:
runs-on: godot runs-on: godot
env: # env:
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache # RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
steps: steps:
# - name: Install node, xvfb and curl # - name: Install node, xvfb and curl
# run: | # run: |
# apt update && apt -y install curl nodejs xvfb # apt update && apt -y install curl nodejs xvfb
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@v4
with: with:
token: ${{ secrets.TOKEN }}
lfs: false lfs: false
persist-credentials: true persist-credentials: true
# - name: Checkout LFS
# run: |
# git lfs install --local
# echo ${{ gitea.server_url }}
# AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
# echo ${{ gitea.repository }}
# AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path)
# echo sandwich
# git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader
# echo teub
# git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
# echo bite
# git lfs pull
- name: Checkout LFS - name: Checkout LFS
run: | run: |
apt-get update && apt-get install -y git-lfs
git lfs update --force || true
git lfs install --local git lfs install --local
echo toto
AUTH=$(git config http.${{ gitea.server_url }}/.extraheader) AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path) echo tata
git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader git config --local --unset http.${{ github.server_url }}/.extraheader
git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH" echo http.${{ github.server_url }}/${{ github.repository }}.git/info/lfs/objects/batch.extraheader
git config --local http.${{ github.server_url }}/${{ github.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
echo bite
git lfs pull git lfs pull
- name: Run tests - name: Run tests
@@ -84,8 +101,8 @@ jobs:
Export: Export:
runs-on: godot runs-on: godot
env: # env:
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache # RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
# needs: # needs:
# - BumpTag # - BumpTag
# - Test # Wait for tests to finish # - Test # Wait for tests to finish
@@ -93,9 +110,10 @@ jobs:
image: barichello/godot-ci:mono-4.6 image: barichello/godot-ci:mono-4.6
steps: steps:
- name: Install curl and zip - name: Install tools
run: | run: |
apt update && apt -y install curl zip apt update && apt -y install curl zip
- name: Install node 24 - name: Install node 24
run: | run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
@@ -103,8 +121,12 @@ jobs:
nvm install 24 nvm install 24
node -v node -v
- name: Test node version
run: |
node -v
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@v3
with: with:
lfs: false lfs: false
persist-credentials: true persist-credentials: true