summaryrefslogtreecommitdiffstats
path: root/.github/workflows/elefant.yml
blob: db44a63a75ca95c6cdb721902c5f13a8e943d534 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: test fuse cow
on: push
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Setup dotnet
        uses: actions/setup-dotnet@v2
        with:
          dotnet-version: '5.x.x'

      - name: Install dnbd3 dependencies
        working-directory: ${{ github.workspace }}
        run: |
          sudo apt-get update -y -qq 
          sudo apt-get install -y -qq make \
                                      clang-format \
                                      linux-headers-generic \
                                      libfuse-dev \
                                      libjansson-dev \
                                      libcurl4-openssl-dev \
                                      rpm
      - name: Configure dnbd3 build
        run: |
          cmake -B ${{ github.workspace }}/build \
                -S ${{ github.workspace }} \
                -D CMAKE_BUILD_TYPE=${{ matrix.config.build-type }} \
                -D DNBD3_KERNEL_MODULE=OFF \
                -D DNBD3_BENCHMARK=OFF \
                -D DNBD3_SERVER_FUSE=OFF \
                -D DNBD3_SERVER=ON \
                -D DNBD3_SERVER_FUSE=ON \
                -D DNBD3_CLIENT_FUSE_COW_TEST=ON \
                -D DNBD3_RELEASE_HARDEN=OFF

      - name: Build dnbd3 artifacts
        working-directory: ${{ github.workspace }}/build
        run: make
      - name: Get cow_merger_service
        working-directory: ${{ github.workspace }}
        run: git clone --depth 1  --branch "master" "https://github.com/z0Kng/cow_merger_service.git" "../cow_server"
      - name: Build cow_merger_service
        working-directory: ${{ github.workspace }}/../cow_server/cow_merger_service
        run: dotnet build cow_merger_service.csproj --runtime linux-x64
      - name: Setup cow_merger_service
        working-directory: ${{ github.workspace }}/../cow_server/
        run: |
          mkdir /home/runner/work/WorkingDirectory 
          mkdir /home/runner/work/OriginalImageDirectory 
          mkdir /home/runner/work/Output
          sed -i 's/^        "WorkingDirectory":.*/        "WorkingDirectory": "\/home\/runner\/work\/WorkingDirectory",/g'  cow_merger_service/bin/Debug/net5.0/linux-x64/appsettings.json
          sed -i 's/^        "OriginalImageDirectory":.*/        "OriginalImageDirectory": "\/home\/runner\/work\/OriginalImageDirectory",/g' cow_merger_service/bin/Debug/net5.0/linux-x64/appsettings.json
          sed -i 's/^        "DestinationDirectory":.*/        "DestinationDirectory": "\/home\/runner\/work\/Output",/g'  cow_merger_service/bin/Debug/net5.0/linux-x64/appsettings.json           
          while read line; do echo $line; done < cow_merger_service/bin/Debug/net5.0/linux-x64/appsettings.json
          cd cow_merger_service/bin/Debug/net5.0/linux-x64/
          ./cow_merger_service 2>&1 > log.out &
      - name: Generate test file
        working-directory: ${{ github.workspace }}/build/src/cowtest
        run: ./dnbd3-fuse-cow-test -c /home/runner/work/OriginalImageDirectory/test.r1
      - name: Setup dnbd3 server
        working-directory: ${{ github.workspace }}
        run: |
          mkdir /home/runner/work/dnbd3-server-config/
          cp pkg/config/server.conf /home/runner/work/dnbd3-server-config/
          sed -i "s/^basePath=.*/basePath=\/home\/runner\/work\/OriginalImageDirectory/g" /home/runner/work/dnbd3-server-config/server.conf 
          cd build/src/server
          ./dnbd3-server --config /home/runner/work/dnbd3-server-config/
          sleep 5
      - name: Run standard test
        working-directory: ${{ github.workspace }}/build/src
        run: |
          mkdir /home/runner/work/mount 
          mkdir /home/runner/work/tmp 
          ./fuse/dnbd3-fuse "/home/runner/work/mount" -f -h localhost -i test -c "/home/runner/work/tmp" -C localhost:5000 -y -x 2>&1 > /home/runner/work/tmp/log1.out &
          PID=$!
          sleep 5
          echo PID: $PID
          ./cowtest/dnbd3-fuse-cow-test -t "/home/runner/work/mount/img"  
          echo unmounting: $PID
          sudo umount /home/runner/work/mount
          wait $PID
          echo unmounted
          ./fuse/dnbd3-fuse "/home/runner/work/mount" -f -h localhost -i test -L "/home/runner/work/tmp" -C localhost:5000 -m -y -x 2>&1 > /home/runner/work/tmp/log2.out &
          PID=$!
          sleep 5
          echo PID: $PID
          ./cowtest/dnbd3-fuse-cow-test -v "/home/runner/work/mount/img"  
          echo unmounting: $PID
          sudo umount /home/runner/work/mount 
          wait $PID
          echo unmounted
          sleep 30
          echo Output: $(ls /home/runner/work/Output)
          ./cowtest/dnbd3-fuse-cow-test -v /home/runner/work/Output/test.r2
      - name: Print logs
        if: always()
        run: |
          echo "====fuse-client status.txt===="
          while read line; do echo $line; done < /home/runner/work/tmp/status.txt
          echo
          echo "====fuse-client log1.out===="
          while read line; do echo $line; done < /home/runner/work/tmp/log1.out
          echo
          echo "====fuse-client log2.out===="
          while read line; do echo $line; done < /home/runner/work/tmp/log2.out
          echo
          echo "====dnbd3-server===="
          while read line; do echo $line; done < ${{ github.workspace }}/build/src/server/dnbd3.log
          echo
          echo "====cow_merger_service===="
          while read line; do echo $line; done < ${{ github.workspace }}/../cow_server/cow_merger_service/bin/Debug/net5.0/linux-x64/log.out