From 111723dcffc64e271ffa9f3f8776fdfd81302946 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Tue, 5 Jan 2021 23:58:17 +0100 Subject: [PATCH] Don't run CI from sw.yml for windows branch Signed-off-by: Stefan Weil --- .github/workflows/sw.yml | 73 ---------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 .github/workflows/sw.yml diff --git a/.github/workflows/sw.yml b/.github/workflows/sw.yml deleted file mode 100644 index 0625664908..0000000000 --- a/.github/workflows/sw.yml +++ /dev/null @@ -1,73 +0,0 @@ -name: sw - -on: - push: - pull_request: - schedule: - # every day - - cron: 0 0 * * * - -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [windows-2022, windows-2019, ubuntu-22.04, ubuntu-20.04, macos-12] - - steps: - - uses: actions/checkout@v2 - with: - submodules: recursive - - uses: egorpugin/sw-action@master - - - name: build - if: matrix.os == 'windows-2022' || matrix.os == 'windows-2019' - run: ./sw -static -shared -platform x86,x64 -config d,r build - - - name: build - if: matrix.os != 'windows-2022' && matrix.os != 'windows-2019' - run: ./sw -static -shared -config d,r build -Dwith-tests=1 - - - name: download test data - run: git clone https://github.com/egorpugin/tessdata tessdata_unittest - - - name: copy fonts - if: matrix.os != 'windows-2022' && matrix.os != 'windows-2019' - run: cp tessdata_unittest/fonts/* test/testing/ - - - name: copy fonts - if: matrix.os == 'windows-2022' || matrix.os == 'windows-2019' - run: Copy-Item -Path "tessdata_unittest\fonts\*" -Destination "test\testing" -Recurse - shell: pwsh - - - name: test - if: matrix.os != 'windows-2022' && matrix.os != 'windows-2019' - run: ./sw -static -shared -config "d,r" test -Dwith-tests=1 "-Dskip-tests=lstm,lstm_recode" - continue-on-error: true - - - name: test-nightly - if: matrix.os != 'windows-2022' && matrix.os != 'windows-2019' && github.event.schedule=='0 0 * * *' - run: ./sw -static -shared -config "d,r" test -Dwith-tests=1 - continue-on-error: true - - # windows tests hang here for some reason, investigate - #- name: test - #if: matrix.os == 'windows-2022' || matrix.os == 'windows-2019' - #run: ./sw test -Dwith-tests=1 "-Dskip-tests=lstm,lstm_recode" - #continue-on-error: true - - - name: Upload Unit Test Results - if: always() && matrix.os != 'windows-2022' && matrix.os != 'windows-2019' - uses: actions/upload-artifact@v2 - with: - name: Test Results (${{ matrix.os }}) - path: .sw/test/results.xml - - - name: Publish Test Report - if: always() && matrix.os != 'windows-2022' && matrix.os != 'windows-2019' - uses: mikepenz/action-junit-report@v1 - with: - check_name: test (${{ matrix.os }}) - report_paths: .sw/test/results.xml - github_token: ${{ secrets.GITHUB_TOKEN }}