Skip to content

Commit 9fd25ef

Browse files
authored
CI: use slightly older compiler binaries for better compat
1 parent bc0938c commit 9fd25ef

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/make.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,23 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
runs-on: [ubuntu, macos, windows]
29+
runs-on: [ubuntu-20.04, macos-11, windows-latest]
3030
include:
3131
- nul: /dev/null
32-
- runs-on: macos
32+
- runs-on: macos-11
3333
fasmg: /source/macos/x64/fasmg
3434
install-output-ext: "dmg"
35-
- runs-on: windows
35+
- runs-on: windows-latest
3636
fasmg: /fasmg.exe
3737
env: "env:"
3838
exe: .exe
3939
nul: nul
4040
ldflags: LDFLAGS="-static-libgcc -static-libstdc++ -static"
4141
install-output-ext: "zip"
42-
- runs-on: ubuntu
42+
- runs-on: ubuntu-20.04
4343
fasmg: /fasmg.x64
4444
install-output-ext: "tar.gz"
45-
runs-on: ${{matrix.runs-on}}-latest
45+
runs-on: ${{matrix.runs-on}}
4646
steps:
4747
- name: Prepare Build Environment
4848
run: cmake -E echo >> $${{matrix.env}}GITHUB_PATH ${{env.CEDEV_BIN}}
@@ -51,7 +51,7 @@ jobs:
5151
id: ez80-clang
5252
uses: carlosperate/download-file-action@v1.0.3
5353
with:
54-
file-url: ${{env.HOST_DOMAIN}}/artifact?repo=llvm-project&branch=z80&file=ez80-clang${{matrix.exe}}-${{runner.os}}Release
54+
file-url: ${{env.HOST_DOMAIN}}/artifact?repo=llvm-project&branch=z80&file=ez80-clang${{matrix.exe}}-${{matrix.runs-on}}Release
5555
- name: Extract ez80-clang
5656
uses: DuckSoft/extract-7z-action@v1.0
5757
with:
@@ -62,7 +62,7 @@ jobs:
6262
id: ez80-link
6363
uses: carlosperate/download-file-action@v1.0.3
6464
with:
65-
file-url: ${{env.HOST_DOMAIN}}/artifact?repo=llvm-project&branch=z80&file=ez80-link${{matrix.exe}}-${{runner.os}}Release
65+
file-url: ${{env.HOST_DOMAIN}}/artifact?repo=llvm-project&branch=z80&file=ez80-link${{matrix.exe}}-${{matrix.runs-on}}Release
6666
- name: Extract ez80-link
6767
uses: DuckSoft/extract-7z-action@v1.0
6868
with:

0 commit comments

Comments
 (0)