Skip to content

Commit 97e549d

Browse files
committed
Use fixed versions for action OS
1 parent 7eafb72 commit 97e549d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# Note OSX isn't officially supported yet, but might be in the future.
1717
# The build here will help ensure no changes are introduced that
1818
# would make it difficult.
19-
os: [ macos-latest-large ]
19+
os: [ macos-13-large, ubuntu-20.04 ]
2020

2121
runs-on: ${{ matrix.os }}
2222

@@ -36,14 +36,14 @@ jobs:
3636
- run: src/build.sh x64 release
3737

3838
- name: archive so
39-
if: matrix.os == 'ubuntu-latest'
39+
if: matrix.os == 'ubuntu-20.04'
4040
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
4141
with:
4242
name: libInstrumentationEngine.so
4343
path: out/Linux/bin/x64.Release/ClrInstrumentationEngine/libInstrumentationEngine.so
4444

4545
- name: archive dylib
46-
if: matrix.os == 'macos-latest'
46+
if: matrix.os == 'macos-13-large'
4747
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
4848
with:
4949
name: libInstrumentationEngine.dylib

0 commit comments

Comments
 (0)