Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tremor ci inclusion #2334

Merged
merged 1 commit into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/doc-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
push:
branches: [main]
jobs:
license:
runs-on: ubuntu-latest
docs:
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v3
- name: Install deps
Expand All @@ -19,4 +19,12 @@ jobs:
profile: minimal
- uses: Swatinem/rust-cache@v2
- name: make docs
run: make docs
run: |
mkdir docs-test
cd docs-test
git clone --depth 1 --branch main https://github.com/tremor-rs/tremor-www.git
cd tremor-www
ln -s ../../../tremor-runtime tremor-runtime
make tremor-runtime-docs
make openapi
make docusaurus
4 changes: 2 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
target_feature: "+sse4.2"
- os: macos-11.0
target_feature: "+sse4.2"
- os: ubuntu-latest
- os: ubuntu-latest-8-cores
exclude_tests: ""
target_feature: "+avx,+avx2,+sse4.2"

Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install deps
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest-8-cores'
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean
# - name: Free Disk Space (Ubuntu)
# uses: jlumbroso/free-disk-space@main
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ tremor-script/current_counterexample.eqc
.vscode/configurationCache.log
.vscode/dryrun.log
tremor-script-nif/libpath
docs-test
2 changes: 1 addition & 1 deletion tremor-script/lib/axiom.tremor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ end;

## Client to send syslog formated data to axiom.
##
## See the [syslog codec](../../codecs/syslog) for the expected format.
## See the [syslog codec](../codecs/syslog) for the expected format.
##
## arguments:
## - `endpoint_hostport`: The host and port of the [Axiom endpoint](https://axiom.co/docs/endpoints/introduction).
Expand Down