Update Compute backend configuration (#228) #778
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ubuntu | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ubuntu_test: | |
| name: Execute tests on Ubuntu | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Swift 6.2.4 crashes swift-frontend when compiling C++ interop tests on Linux. | |
| # Swift 6.3.2 has been verified locally on Linux. | |
| swift_version: ["6.3.2"] | |
| runs-on: ubuntu-22.04 | |
| env: | |
| OPENATTRIBUTEGRAPH_WERROR: 1 | |
| container: swift:${{ matrix.swift_version }}-jammy | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Building and running tests in debug mode with coverage | |
| run: | | |
| swift test \ | |
| -c debug \ | |
| --enable-code-coverage \ | |
| --build-path .build-test-debug | |
| llvm-cov show \ | |
| -instr-profile=.build-test-debug/debug/codecov/default.profdata \ | |
| .build-test-debug/debug/OpenAttributeGraphPackageTests.xctest \ | |
| > coverage.txt | |
| - name: Building and running tests in release mode | |
| run: | | |
| swift test \ | |
| -c release \ | |
| --build-path .build-test-release | |
| - name: Install Codecov dependencies | |
| run: apt-get update && apt-get install -y curl gpg | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: ubuntu | |
| verbose: true |