Skip to content

Commit

Permalink
Move CI scripts to net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uxmal committed Feb 15, 2024
1 parent 1055604 commit fc32e63
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ci/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0
FROM mcr.microsoft.com/dotnet/sdk:8.0

RUN apt-get update && \
apt-get install -y build-essential gcc g++ cmake libcapstone-dev pkg-config p7zip-full \
Expand Down
2 changes: 1 addition & 1 deletion .ci/linux_arm64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0
FROM mcr.microsoft.com/dotnet/sdk:8.0

RUN apt-get update && \
apt-get install -y build-essential gcc g++ cmake libcapstone-dev pkg-config p7zip-full \
Expand Down
2 changes: 1 addition & 1 deletion .ci/windows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM cirrusci/windowsservercore:cmake-2022.06.23

RUN powershell -Command "`
choco install -y dotnet-6.0-sdk; `
choco install -y dotnet-8.0-sdk; `
REG ADD 'HKLM\SOFTWARE\WOW6432Node\Microsoft\NET Framework Setup\NDP\v3.5' /t REG_DWORD /v Install /d 1; `
REG ADD 'HKLM\SOFTWARE\WOW6432Node\Microsoft\NET Framework Setup\NDP\v3.5' /t REG_DWORD /v SP /d 1; `
REG ADD 'HKLM\SOFTWARE\WOW6432Node\Microsoft\NET Framework Setup\NDP\v3.5' /t REG_SZ /v Version /d 3.5.30729.4926; `
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reko.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Reko

on:
push:
branches: [ master, net6.0, msbuildify ]
branches: [ master, net8.0, msbuildify ]
pull_request:
branches: [ master, net6.0 ]
branches: [ master, net8.0 ]

env:
MSBUILDDISABLENODEREUSE: 1
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Install dependencies
shell: bash
run: |
Expand Down

0 comments on commit fc32e63

Please sign in to comment.