Adding RELEASING.md #905
Workflow file for this run
This file contains 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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
full-build: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Full Build | |
run: ./fullbuild.sh | |
- name: Smoke Test | |
run: ./smoketest.sh | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
xcframework: | |
runs-on: macos-11 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Print Swift version | |
run: swift --version | |
- name: Build xcframework | |
working-directory: ./SplunkRumWorkspace/SplunkRum | |
run: ./build_binaries.sh | |
- name: Upload xcframework | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SplunkOtel.xcframework | |
path: ./SplunkRumWorkspace/SplunkRum/xcframeworks/SplunkOtel.xcframework | |
check_links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true |