Skip to content

Commit a9eab07

Browse files
committed
testing CI changes
1 parent 1b515b3 commit a9eab07

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/actions/setup-env/action.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
cache-name: cache-node-gyp
3838
with:
3939
path: ~/.cache/node-gyp
40-
key: '${{ inputs.os }}-${{ runner.arch }}-${{ inputs.node}}'
40+
key: 'node-gyp-${{ inputs.os }}-${{ runner.arch }}-${{ inputs.node}}'
4141

4242
- name: Cache node modules
4343
id: cache-nodemodules
@@ -46,7 +46,7 @@ runs:
4646
cache-name: cache-node-modules
4747
with:
4848
path: node_modules
49-
key: ${{ inputs.os }}-${{ inputs.node }}-${{ hashFiles('package-lock.json') }}
49+
key: "node-modules-${{ inputs.os }}-${{ inputs.node }}-${{ hashFiles('package-lock.json') }}"
5050

5151
- name: Setup dotnet
5252
uses: actions/setup-dotnet@v5
@@ -57,15 +57,15 @@ runs:
5757
uses: actions/cache@v4
5858
with:
5959
path: ~/.nuget/packages
60-
key: ${{ inputs.os }}-nuget-${{ hashFiles('**/*.csproj') }}
60+
key: nuget-${{ inputs.os }}-${{ hashFiles('**/*.csproj') }}
6161
restore-keys: |
6262
${{ inputs.os }}-nuget-
6363
6464
- if: runner.os == 'macOS' && inputs.node == 16
6565
shell: bash
6666
name: Add missing packages for macOS NodeJs 16
6767
run: |
68-
brew install python-setuptools --overwrite
68+
# brew install python-setuptools --overwrite
6969
pip install --upgrade --force-reinstall setuptools
7070
7171
- name: Setup Mono
@@ -75,6 +75,7 @@ runs:
7575
brew install mono --overwrite
7676
brew reinstall pkg-config
7777
brew bundle dump --file ./Brewfile --force
78+
echo "$(cat ./Brewfile)"
7879
7980
- name: Homebrew cache
8081
if: runner.os == 'macOS'
@@ -83,7 +84,7 @@ runs:
8384
path: |
8485
~/Library/Caches/Homebrew
8586
~/opt/homebrew/Cellar
86-
key: ${{ inputs.os }}-brew-${{ hashFiles('./Brewfile') }}
87+
key: brew-${{ inputs.os }}-${{ hashFiles('./Brewfile') }}
8788

8889
- name: Setup Mono
8990
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)