Skip to content

Commit

Permalink
ci: 🔄 synced local '.github/workflows/' with remote 'workflows/swift'
Browse files Browse the repository at this point in the history
  • Loading branch information
ordo-ci committed Oct 14, 2024
1 parent d61145d commit 803239e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/swift-code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: khlopko/setup-swift@bfd61cbd14eeef55a27afc45138b61ced7174839
- name: Swift version
run: swift --version

- name: Ubuntu deps
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get install -y libjemalloc-dev #llvm-15
sudo apt-get install -y libjemalloc-dev
- uses: khlopko/setup-swift@bfd61cbd14eeef55a27afc45138b61ced7174839

- name: Swift version
run: swift --version

- name: Start consul
uses: ./.github/actions/consul-start
Expand All @@ -37,7 +40,7 @@ jobs:
fi
if [ -f ${xctest_binary} ]; then
llvm-cov export -format="lcov" ${xctest_binary} -instr-profile .build/debug/codecov/default.profdata > info.lcov
llvm-cov-15 export -format="lcov" ${xctest_binary} -instr-profile .build/debug/codecov/default.profdata > info.lcov
fi
- name: Upload codecov
Expand All @@ -46,4 +49,3 @@ jobs:
token: ${{ secrets.CODECOV_REPO_TOKEN }}
files: info.lcov
fail_ci_if_error: true
verbose: true
2 changes: 1 addition & 1 deletion .github/workflows/swift-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
swift: [ "5.10" ]
swift: [ "5.10", "6.0" ]

runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 803239e

Please sign in to comment.