Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 671d901

Browse files
committed
ci: align loongarch golang version when it is not abi1
1 parent 80e4eaa commit 671d901

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/build.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -104,31 +104,24 @@ jobs:
104104
- uses: actions/checkout@v4
105105

106106
- name: Set up Go
107-
if: ${{ matrix.jobs.goversion == '' && matrix.jobs.goarch != 'loong64' }}
107+
if: ${{ matrix.jobs.goversion == '' && matrix.jobs.abi != '1' }}
108108
uses: actions/setup-go@v5
109109
with:
110110
go-version: '1.23'
111111

112112
- name: Set up Go
113-
if: ${{ matrix.jobs.goversion != '' && matrix.jobs.goarch != 'loong64' }}
113+
if: ${{ matrix.jobs.goversion != '' && matrix.jobs.abi != '1' }}
114114
uses: actions/setup-go@v5
115115
with:
116116
go-version: ${{ matrix.jobs.goversion }}
117117

118-
- name: Set up Go1.22 loongarch abi1
118+
- name: Set up Go1.23 loongarch abi1
119119
if: ${{ matrix.jobs.goarch == 'loong64' && matrix.jobs.abi == '1' }}
120120
run: |
121121
wget -q https://github.com/MetaCubeX/loongarch64-golang/releases/download/1.23.0/go1.23.0.linux-amd64-abi1.tar.gz
122122
sudo tar zxf go1.23.0.linux-amd64-abi1.tar.gz -C /usr/local
123123
echo "/usr/local/go/bin" >> $GITHUB_PATH
124124
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-
132125
# modify from https://github.com/restic/restic/issues/4636#issuecomment-1896455557
133126
# this patch file only works on golang1.23.x
134127
# that means after golang1.24 release it must be changed

0 commit comments

Comments
 (0)