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

This commit is contained in:
2026-01-28 15:19:04 +01:00
parent 6b23fdbd26
commit e908cd3085

View File

@@ -22,6 +22,7 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v6 uses: actions/checkout@v6
with: with:
token: ${{ secrets.TOKEN }}
lfs: false lfs: false
- name: Remove buggy pre-push hook - name: Remove buggy pre-push hook
run: | run: |
@@ -49,35 +50,36 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@v6
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: |
git lfs install --local git lfs install --local
echo toto echo ${{ gitea.server_url }}
AUTH=$(git config http.${{ gitea.server_url }}/.extraheader) AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
echo tata echo ${{ gitea.repository }}
git config --local --unset http.${{ github.server_url }}/.extraheader AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path)
echo http.${{ github.server_url }}/${{ github.repository }}.git/info/lfs/objects/batch.extraheader echo sandwich
git config --local http.${{ github.server_url }}/${{ github.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH" 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 echo bite
git lfs pull git lfs pull
# - name: Checkout LFS
# run: |
# git lfs install --local
# echo toto
# AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
# echo tata
# git config --local --unset http.${{ github.server_url }}/.extraheader
# 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
- name: Run tests - name: Run tests
uses: godot-gdunit-labs/gdUnit4-action@v1 uses: godot-gdunit-labs/gdUnit4-action@v1
with: with:
@@ -111,22 +113,21 @@ jobs:
- name: Install curl and zip - name: Install curl and zip
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: | shell: bash -l {0}
# curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash run: |
# \. "$HOME/.nvm/nvm.sh" curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# nvm install 24 \. "$HOME/.nvm/nvm.sh"
# node -v nvm install 24
# node -v
# - name: Test node version
# run: | - name: Test node version
# node -v shell: bash -l {0}
- name: Install node run: |
uses: actions/setup-node@v6 node -v
with:
node-version: 24
- name: Checkout - name: Checkout
shell: bash -l {0}
uses: actions/checkout@v6 uses: actions/checkout@v6
with: with:
lfs: false lfs: false