File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 10
10
build :
11
11
strategy :
12
12
matrix :
13
- os : [ubuntu-22.04, ubuntu-24.04, macos-14 ]
13
+ os : [ubuntu-22.04, ubuntu-24.04, macos-latest ]
14
14
fail-fast : false
15
15
runs-on : ${{ matrix.os }}
16
16
@@ -27,19 +27,24 @@ jobs:
27
27
distribution : ' corretto'
28
28
cache : ' maven'
29
29
- name : Set up Homebrew
30
- if : matrix.os == 'macos-14 '
30
+ if : matrix.os == 'macos-latest '
31
31
id : set-up-homebrew
32
32
uses : Homebrew/actions/setup-homebrew@master
33
33
- name : Install GNU binutils
34
- if : matrix.os == 'macos-14 '
34
+ if : matrix.os == 'macos-latest '
35
35
run : |
36
36
brew install binutils
37
37
brew install patchelf
38
38
echo /opt/homebrew/opt/binutils/bin >> $GITHUB_PATH
39
39
- name : Install libaio-dev
40
- if : matrix.os != 'macos-14 '
40
+ if : matrix.os != 'macos-latest '
41
41
run : |
42
42
sudo apt-get install -y libaio-dev
43
+ - name : Cache mysql downloads
44
+ uses : actions/cache@v4
45
+ with :
46
+ path : testing-mysql-server-8/dist
47
+ key : mysql-downloads-${{ hashFiles('**/repack-mysql-8.sh') }}
43
48
- name : Run Maven install
44
49
run : |
45
50
echo $PATH
You can’t perform that action at this time.
0 commit comments