From 4779b4037380833dcf5cf02d99de0f1fdf6264ae Mon Sep 17 00:00:00 2001 From: hocine BENKHADRA Date: Tue, 6 Aug 2024 12:49:16 +0200 Subject: [PATCH] try with LF --- .github/workflows/ci-rs.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-rs.yml b/.github/workflows/ci-rs.yml index cb6bd09..16149fc 100644 --- a/.github/workflows/ci-rs.yml +++ b/.github/workflows/ci-rs.yml @@ -117,7 +117,16 @@ jobs: with: image: ${{ matrix.settings.image }} options: --user 0:0 -v ${{ github.workspace }}/.github/docker-ubuntu-rust-install.sh:/usr/local/docker-ubuntu-rust-install.sh -v ${{ github.workspace }}/x-win-rs:/work -w /work - run: echo "hello world!" + run: | + Xvfb :0 & + sleep 1 + gpg-agent --daemon + sleep 1 + xfce4-session & + sleep 1 + sh /usr/local/docker-ubuntu-rust-install.sh ${{ matrix.settings.target }} + cd /work + cargo test --target ${{ matrix.settings.target }} - name: Build run: cargo build --release --target ${{ matrix.settings.target }}