Skip to content

Commit 6074098

Browse files
committed
debug
Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent e94edf1 commit 6074098

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ jobs:
2828
race: ["-race", ""]
2929
criu: ["", "criu-dev"]
3030
exclude:
31-
- criu: "criu-dev"
32-
rootless: "rootless"
33-
os: "ubuntu-22.04"
34-
go-version: "1.20.x"
31+
- criu: criu-dev
32+
rootless: rootless
33+
- criu: criu-dev
34+
go-version: 1.19.x
35+
- criu: criu-dev
36+
race: -race
3537
runs-on: ${{ matrix.os }}
3638

3739
steps:
@@ -65,6 +67,7 @@ jobs:
6567
- name: install go ${{ matrix.go-version }}
6668
uses: actions/setup-go@v4
6769
with:
70+
cache: false # https://github.com/actions/setup-go/issues/368
6871
go-version: ${{ matrix.go-version }}
6972

7073
- name: build
@@ -84,12 +87,12 @@ jobs:
8487
run: |
8588
sudo useradd -u2000 -m -d/home/rootless -s/bin/bash rootless
8689
# Allow root and rootless itself to execute `ssh rootless@localhost` in tests/rootless.sh
87-
ls -l $GITHUB_WORKSPACE/tests
8890
ssh-keygen -t ecdsa -N "" -f $HOME/rootless.key
8991
sudo mkdir -m 0700 -p /home/rootless/.ssh
9092
sudo cp $HOME/rootless.key /home/rootless/.ssh/id_ecdsa
9193
sudo cp $HOME/rootless.key.pub /home/rootless/.ssh/authorized_keys
9294
sudo chown -R rootless.rootless /home/rootless
95+
sudo chmod a+X /home/runner # for Ubuntu 22.04
9396
9497
- name: integration test (fs driver)
9598
run: sudo -E PATH="$PATH" script -e -c 'make local${{ matrix.rootless }}integration'

0 commit comments

Comments
 (0)