Skip to content

Commit 868a000

Browse files
committed
Test gccgo in CI
1 parent 8f6d48b commit 868a000

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,18 @@ jobs:
4747
go test -parallel 1 -race -v ./...
4848
4949
# Test gccgo
50-
# Needs gccgo 13, which should be available in Ubuntu 24.04.
51-
# gcc:
52-
# runs-on: 'ubuntu-22.04'
53-
# name: 'test (ubuntu-22.04, gccgo 12.1)'
54-
# timeout-minutes: 10
55-
# steps:
56-
# - uses: 'actions/checkout@v4'
57-
# - name: test
58-
# run: |
59-
# sudo apt-get -y install gccgo-12
60-
# FSNOTIFY_BUFFER=4096 go-12 test -parallel 1 ./...
61-
# go-12 test -parallel 1 ./...
62-
# FSNOTIFY_DEBUG=1 go-12 test -parallel 1 -v ./...
50+
gcc:
51+
runs-on: 'ubuntu-24.04'
52+
name: 'test (ubuntu-24.04, gccgo 13.2)'
53+
timeout-minutes: 10
54+
steps:
55+
- uses: 'actions/checkout@v4'
56+
- name: test
57+
run: |
58+
sudo apt-get -y install gccgo-13
59+
FSNOTIFY_BUFFER=4096 go-13 test -parallel 1 ./...
60+
go-13 test -parallel 1 ./...
61+
FSNOTIFY_DEBUG=1 go-13 test -parallel 1 -v ./...
6362
6463
macos:
6564
name: 'test'

0 commit comments

Comments
 (0)