@@ -104,31 +104,24 @@ jobs:
104
104
- uses : actions/checkout@v4
105
105
106
106
- name : Set up Go
107
- if : ${{ matrix.jobs.goversion == '' && matrix.jobs.goarch != 'loong64 ' }}
107
+ if : ${{ matrix.jobs.goversion == '' && matrix.jobs.abi != '1 ' }}
108
108
uses : actions/setup-go@v5
109
109
with :
110
110
go-version : ' 1.23'
111
111
112
112
- name : Set up Go
113
- if : ${{ matrix.jobs.goversion != '' && matrix.jobs.goarch != 'loong64 ' }}
113
+ if : ${{ matrix.jobs.goversion != '' && matrix.jobs.abi != '1 ' }}
114
114
uses : actions/setup-go@v5
115
115
with :
116
116
go-version : ${{ matrix.jobs.goversion }}
117
117
118
- - name : Set up Go1.22 loongarch abi1
118
+ - name : Set up Go1.23 loongarch abi1
119
119
if : ${{ matrix.jobs.goarch == 'loong64' && matrix.jobs.abi == '1' }}
120
120
run : |
121
121
wget -q https://github.com/MetaCubeX/loongarch64-golang/releases/download/1.23.0/go1.23.0.linux-amd64-abi1.tar.gz
122
122
sudo tar zxf go1.23.0.linux-amd64-abi1.tar.gz -C /usr/local
123
123
echo "/usr/local/go/bin" >> $GITHUB_PATH
124
124
125
- # - name: Set up Go1.22 loongarch abi2
126
- # if: ${{ matrix.jobs.goarch == 'loong64' && matrix.jobs.abi == '2' }}
127
- # run: |
128
- # wget -q https://github.com/MetaCubeX/loongarch64-golang/releases/download/1.22.4/go1.22.4.linux-amd64-abi2.tar.gz
129
- # sudo tar zxf go1.22.4.linux-amd64-abi2.tar.gz -C /usr/local
130
- # echo "/usr/local/go/bin" >> $GITHUB_PATH
131
-
132
125
# modify from https://github.com/restic/restic/issues/4636#issuecomment-1896455557
133
126
# this patch file only works on golang1.23.x
134
127
# that means after golang1.24 release it must be changed
0 commit comments