File tree Expand file tree Collapse file tree 5 files changed +23
-17
lines changed Expand file tree Collapse file tree 5 files changed +23
-17
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,12 @@ jobs:
22
22
run : |
23
23
mkdir -p ${{github.workspace}}/temp
24
24
- name : Downloading a DLS file for testing
25
- uses : ethanjli/cached-download-action@v0.1.2
25
+ uses : ethanjli/cached-download-action@6bee1d546f48427140e81ed759b343229c93b7c5
26
26
with :
27
27
url : http://www.ronimusic.com/sf2/Airfont_340.dls
28
- destination : temp/soundfont.dls
29
- cache-key : soundfont-${{ runner.os }}
28
+ destination : ${{env.TEMP}}/soundfont.dls
29
+ cache-key : cached.soundfont.dls
30
+ enable-cross-os-archive : true
30
31
- name : FreeBSD test
31
32
id : test
32
33
uses : vmactions/freebsd-vm@v1
Original file line number Diff line number Diff line change @@ -41,11 +41,12 @@ jobs:
41
41
mkdir -p ${{github.workspace}}/temp
42
42
43
43
- name : ' ${{ matrix.icon }} Downloading a DLS file for testing'
44
- uses : ethanjli/cached-download-action@v0.1.2
44
+ uses : ethanjli/cached-download-action@6bee1d546f48427140e81ed759b343229c93b7c5
45
45
with :
46
46
url : http://www.ronimusic.com/sf2/Airfont_340.dls
47
- destination : temp/soundfont.dls
48
- cache-key : soundfont-${{ runner.os }}
47
+ destination : ${{env.TEMP}}/soundfont.dls
48
+ cache-key : cached.soundfont.dls
49
+ enable-cross-os-archive : true
49
50
50
51
- name : ' ${{ matrix.icon }} Configure CMake with USE_44KHZ=${{ matrix.USE_44KHZ }} and USE_16BITS_SAMPLES=${{ matrix.USE_16BITS_SAMPLES }}'
51
52
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{env.INSTALL_LOCATION}} -DUSE_44KHZ=${{ matrix.USE_44KHZ }} -DUSE_16BITS_SAMPLES=${{ matrix.USE_16BITS_SAMPLES }}
Original file line number Diff line number Diff line change @@ -25,11 +25,12 @@ jobs:
25
25
mkdir -p ${{github.workspace}}/temp
26
26
27
27
- name : Downloading a DLS file for testing
28
- uses : ethanjli/cached-download-action@v0.1.2
28
+ uses : ethanjli/cached-download-action@6bee1d546f48427140e81ed759b343229c93b7c5
29
29
with :
30
30
url : http://www.ronimusic.com/sf2/Airfont_340.dls
31
- destination : temp/soundfont.dls
32
- cache-key : soundfont-${{ runner.os }}
31
+ destination : ${{env.TEMP}}/soundfont.dls
32
+ cache-key : cached.soundfont.dls
33
+ enable-cross-os-archive : true
33
34
34
35
- name : Configure CMake
35
36
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{env.INSTALL_LOCATION}}
Original file line number Diff line number Diff line change @@ -35,11 +35,12 @@ jobs:
35
35
run : mkdir temp
36
36
37
37
- name : ' ${{ matrix.icon }} Downloading a DLS file for testing'
38
- uses : ethanjli/cached-download-action@v0.1.2
38
+ uses : ethanjli/cached-download-action@6bee1d546f48427140e81ed759b343229c93b7c5
39
39
with :
40
40
url : http://www.ronimusic.com/sf2/Airfont_340.dls
41
- destination : temp/soundfont.dls
42
- cache-key : soundfont-${{ runner.os }}
41
+ destination : ${{env.TEMP}}/soundfont.dls
42
+ cache-key : cached.soundfont.dls
43
+ enable-cross-os-archive : true
43
44
44
45
- name : ' ${{ matrix.icon }} Configure CMake'
45
46
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{env.INSTALL_LOCATION}} -G Ninja
Original file line number Diff line number Diff line change 10
10
env :
11
11
BUILD_TYPE : RelWithDebInfo
12
12
INSTALL_LOCATION : SonivoxV3
13
- TEMP : ${{github.workspace}}/ temp
13
+ TEMP : temp
14
14
15
15
jobs :
16
16
build :
@@ -46,15 +46,17 @@ jobs:
46
46
ninja:p
47
47
gtest:p
48
48
49
- - name : ' ${{ matrix.icon }} Temp Environment Variable'
50
- run : mkdir temp
49
+ - name : ' ${{ matrix.icon }} TEMP Environment Variable'
50
+ run : |
51
+ mkdir temp
51
52
52
53
- name : ' ${{ matrix.icon }} Downloading a DLS file for testing'
53
- uses : ethanjli/cached-download-action@v0.1.2
54
+ uses : ethanjli/cached-download-action@6bee1d546f48427140e81ed759b343229c93b7c5
54
55
with :
55
56
url : http://www.ronimusic.com/sf2/Airfont_340.dls
56
57
destination : temp/soundfont.dls
57
- cache-key : soundfont-${{ runner.os }}
58
+ cache-key : cached.soundfont.dls
59
+ enable-cross-os-archive : true
58
60
59
61
- name : ' ${{ matrix.icon }} Configure CMake'
60
62
run : cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{env.INSTALL_LOCATION}} -G Ninja
You can’t perform that action at this time.
0 commit comments