Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37165d1562 | |||
| 5684561b66 | |||
| 2678cac0e6 | |||
| 230b409abe |
@@ -25,19 +25,24 @@ jobs:
|
|||||||
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@v3
|
||||||
with:
|
with:
|
||||||
lfs: false
|
lfs: false
|
||||||
persist-credentials: true
|
|
||||||
|
|
||||||
- name: Checkout LFS
|
- name: Checkout LFS
|
||||||
run: |
|
run: |
|
||||||
git lfs install --local
|
UrlBase=$GITHUB_SERVER_URL; \
|
||||||
AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
|
UrlLfsBase=$UrlBase/${{ gitea.repository }}.git/info/lfs/objects; \
|
||||||
AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path)
|
Auth=`/usr/bin/git config --get --local http.$UrlBase/.extraheader`; \
|
||||||
git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader
|
/usr/bin/git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
||||||
git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
|
/usr/bin/git config --local http.${UrlLfsBase}/.extraheader ''
|
||||||
git lfs pull
|
|
||||||
|
git config --local lfs.transfer.maxretries 1
|
||||||
|
|
||||||
|
/usr/bin/git lfs fetch origin refs/remotes/origin/${{ gitea.ref_name }}
|
||||||
|
/usr/bin/git lfs checkout
|
||||||
|
/usr/bin/git add .
|
||||||
|
/usr/bin/git reset --hard
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
uses: godot-gdunit-labs/gdUnit4-action@v1
|
uses: godot-gdunit-labs/gdUnit4-action@v1
|
||||||
|
|||||||
@@ -93,39 +93,51 @@ jobs:
|
|||||||
- name: Install node, curl and zip
|
- name: Install node, curl and zip
|
||||||
run: |
|
run: |
|
||||||
apt update && apt -y install curl zip nodejs
|
apt update && apt -y install curl zip nodejs
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
lfs: false
|
lfs: false
|
||||||
persist-credentials: true
|
|
||||||
|
|
||||||
- name: Checkout LFS
|
- name: Checkout LFS
|
||||||
run: |
|
run: |
|
||||||
git lfs install --local
|
UrlBase=$GITHUB_SERVER_URL; \
|
||||||
AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
|
UrlLfsBase=$UrlBase/${{ gitea.repository }}.git/info/lfs/objects; \
|
||||||
AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path)
|
Auth=`/usr/bin/git config --get --local http.$UrlBase/.extraheader`; \
|
||||||
git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader
|
/usr/bin/git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
||||||
git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
|
/usr/bin/git config --local http.${UrlLfsBase}/.extraheader ''
|
||||||
git lfs pull
|
|
||||||
|
git config --local lfs.transfer.maxretries 1
|
||||||
# GDUnit action replacement while waiting for 4.6 support
|
|
||||||
- name: Import resources and build solution
|
/usr/bin/git lfs fetch origin refs/remotes/origin/${{ gitea.ref_name }}
|
||||||
run: |
|
/usr/bin/git lfs checkout
|
||||||
godot --headless --editor --build-solutions --quit --import --path $PWD
|
/usr/bin/git add .
|
||||||
- name: Run tests
|
/usr/bin/git reset --hard
|
||||||
run: |
|
|
||||||
godot --headless --path "$PWD" -s -d addons/gdUnit4/bin/GdUnitCmdTool.gd -a ./test -rd ./test/reports --ignoreHeadlessMode
|
# - name: Checkout
|
||||||
- name: Upload test report
|
# uses: actions/checkout@v6
|
||||||
uses: actions/upload-artifact@v3-node20
|
# with:
|
||||||
with:
|
# lfs: false
|
||||||
name: Test Report
|
# persist-credentials: true
|
||||||
path: ${{ github.workspace }}/reports/test-result.html
|
#
|
||||||
|
# - name: Checkout LFS
|
||||||
|
# run: |
|
||||||
|
# git lfs install --local
|
||||||
|
# AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
|
||||||
|
# AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path)
|
||||||
|
# git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader
|
||||||
|
# git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
|
||||||
|
# git lfs pull
|
||||||
|
|
||||||
- name: Remove GDUnit addon folder because it breaks the build
|
- name: Remove GDUnit addon folder because it breaks the build
|
||||||
run: |
|
run: |
|
||||||
rm -rf ${{ gitea.workspace }}/addons/gdUnit4
|
rm -rf ${{ gitea.workspace }}/addons/gdUnit4
|
||||||
|
|
||||||
|
# Replacement while waiting for 4.6 support
|
||||||
|
- name: Import resources and build solution
|
||||||
|
run: |
|
||||||
|
godot --headless --editor --build-solutions --quit --import --path $PWD
|
||||||
|
|
||||||
- name: Build Windows
|
- name: Build Windows
|
||||||
run: |
|
run: |
|
||||||
mkdir -v -p build/windows
|
mkdir -v -p build/windows
|
||||||
|
|||||||
@@ -40,19 +40,24 @@ jobs:
|
|||||||
apt update && apt -y install curl zip nodejs
|
apt update && apt -y install curl zip nodejs
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
lfs: false
|
lfs: false
|
||||||
persist-credentials: true
|
|
||||||
|
|
||||||
- name: Checkout LFS
|
- name: Checkout LFS
|
||||||
run: |
|
run: |
|
||||||
git lfs install --local
|
UrlBase=$GITHUB_SERVER_URL; \
|
||||||
AUTH=$(git config http.${{ gitea.server_url }}/.extraheader)
|
UrlLfsBase=$UrlBase/${{ gitea.repository }}.git/info/lfs/objects; \
|
||||||
AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path)
|
Auth=`/usr/bin/git config --get --local http.$UrlBase/.extraheader`; \
|
||||||
git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader
|
/usr/bin/git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
||||||
git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
|
/usr/bin/git config --local http.${UrlLfsBase}/.extraheader ''
|
||||||
git lfs pull
|
|
||||||
|
git config --local lfs.transfer.maxretries 1
|
||||||
|
|
||||||
|
/usr/bin/git lfs fetch origin refs/remotes/origin/${{ gitea.ref_name }}
|
||||||
|
/usr/bin/git lfs checkout
|
||||||
|
/usr/bin/git add .
|
||||||
|
/usr/bin/git reset --hard
|
||||||
|
|
||||||
- name: Import resources and build solution
|
- name: Import resources and build solution
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user