Skip to content

Commit b92e9c9

Browse files
Updates
1 parent 88f5a39 commit b92e9c9

4 files changed

Lines changed: 1588 additions & 3773 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
mv linux.yml .github/workflows/
3434
git config --local user.email "action@github.com"
3535
git config --local user.name "GitHub Action"
36-
git add . -f
36+
git add -f . ':!.pixi'
3737
git commit -m "Add build files `date '+%Y-%m-%d-%H%M'`" -a
3838
remote_repo="https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
3939
git push "${remote_repo}" HEAD:buildbranch_linux --follow-tags --force
@@ -58,7 +58,7 @@ jobs:
5858
mv osx.yml .github/workflows/
5959
git config --local user.email "action@github.com"
6060
git config --local user.name "GitHub Action"
61-
git add . -f
61+
git add -f . ':!.pixi'
6262
git commit -m "Add build files `date '+%Y-%m-%d-%H%M'`" -a
6363
remote_repo="https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
6464
git push "${remote_repo}" HEAD:buildbranch_osx --follow-tags --force
@@ -83,7 +83,7 @@ jobs:
8383
mv osx_arm64.yml .github/workflows/
8484
git config --local user.email "action@github.com"
8585
git config --local user.name "GitHub Action"
86-
git add . -f
86+
git add -f . ':!.pixi'
8787
git commit -m "Add build files `date '+%Y-%m-%d-%H%M'`" -a
8888
remote_repo="https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
8989
git push "${remote_repo}" HEAD:buildbranch_osx_arm64 --follow-tags --force
@@ -109,7 +109,7 @@ jobs:
109109
mv win.yml .github/workflows/
110110
git config --local user.email "action@github.com"
111111
git config --local user.name "GitHub Action"
112-
git add . -f
112+
git add -f . ':!.pixi'
113113
git commit -m "Add build files `date '+%Y-%m-%d-%H%M'`" -a
114114
remote_repo="https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
115115
git push "${remote_repo}" HEAD:buildbranch_win --follow-tags --force
@@ -134,7 +134,7 @@ jobs:
134134
mv linux_aarch64.yml .github/workflows/build_linux_aarch64.yml
135135
git config --local user.email "action@github.com"
136136
git config --local user.name "GitHub Action"
137-
git add . -f
137+
git add -f . ':!.pixi'
138138
git commit -m "Add build files `date '+%Y-%m-%d-%H%M'`" -a
139139
remote_repo="https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
140140
git push "${remote_repo}" HEAD:buildbranch_linux_aarch64 --follow-tags --force

.github/workflows/testpr.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ jobs:
9898
run: |
9999
rm -rf ${{ matrix.folder_cache }}/*
100100
101+
- name: Delete specific outdated cache entries
102+
shell: bash -l {0}
103+
run: |
104+
# rm -rf ${{ matrix.folder_cache }}/ros-kilted-autoware-trajectory* 2>/dev/null || true
105+
mkdir -p ${{ matrix.folder_cache }}
106+
pixi run rattler-index fs ${{ matrix.folder_cache }}/.. --force
107+
101108
- name: See packages restored by cache
102109
shell: bash -l {0}
103110
run: |

0 commit comments

Comments
 (0)