From be0b69971a4d8447d86f77b3d09b3820e8c9cb67 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 3 Jul 2023 22:31:15 +0200 Subject: remove project.ci The weird magic going on in the ci-{boost,build} scripts is honestly too weird. With hindsight, it seems to me that it's much better to just build a project with the same command during a CI run as when developing locally. Plus, I haven't really used either Travis or AppVeyor in quite some time, so this code was mostly untested really. --- .github/workflows/ci_github.yml | 52 ----------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/ci_github.yml (limited to '.github/workflows/ci_github.yml') diff --git a/.github/workflows/ci_github.yml b/.github/workflows/ci_github.yml deleted file mode 100644 index 96a52a2..0000000 --- a/.github/workflows/ci_github.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: CI (GitHub) - -on: - push: - paths: - - 'examples/**' - - 'project/**' - pull_request: - schedule: - # Weekly, at 5:30 AM on Saturday (somewhat randomly chosen). - - cron: '30 5 * * 6' - workflow_dispatch: - -jobs: - build: - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - toolset: [gcc, clang, msvc] - configuration: [Debug, Release] - exclude: - - {os: ubuntu-latest, toolset: msvc} - - {os: windows-latest, toolset: gcc} - - {os: windows-latest, toolset: clang} - runs-on: '${{ matrix.os }}' - name: '${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.configuration }}' - defaults: - run: - shell: pwsh - env: - TOOLSET: '${{ matrix.toolset }}' - PLATFORM: x64 - CONFIGURATION: '${{ matrix.configuration }}' - BOOST_VERSION: 1.81.0 - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - name: Cache Boost - uses: actions/cache@v3 - with: - path: '${{ runner.workspace }}/build/boost_*.tar.gz' - key: 'boost_${{ env.BOOST_VERSION }}' - - name: Build Boost - run: python -m project.ci.boost -- --with-filesystem - - name: Build example project - run: python -m project.ci.build --install --subdir examples/boost - - name: Run example project - run: ./.ci/run_foo.ps1 (Join-Path $env:GITHUB_WORKSPACE .. build install bin foo) -- cgit v1.2.3