Skip to content

Commit

Permalink
Sealevel (#2404)
Browse files Browse the repository at this point in the history
### Description

Opening for that sweet sweet agent image

### Drive-by changes

_Are there any minor or drive-by changes also included?_

### Related issues

- Fixes #[issue number here]

### Backward compatibility

_Are these changes backward compatible?_

Yes
No

_Are there any infrastructure implications, e.g. changes that would
prohibit deploying older commits using this infra tooling?_

None
Yes


### Testing

_What kind of testing have these changes undergone?_

None
Manual
Unit Tests

---------

Co-authored-by: Steven Sloboda <[email protected]>
Co-authored-by: Nam Chu Hoai <[email protected]>
Co-authored-by: Yorke Rhodes <[email protected]>
Co-authored-by: J M Rossy <[email protected]>
Co-authored-by: Mattie Conover <[email protected]>
Co-authored-by: Asa Oines <[email protected]>
Co-authored-by: Sergei Patrikeev <[email protected]>
Co-authored-by: Daniel Savu <[email protected]>
Co-authored-by: Kunal Arora <[email protected]>
Co-authored-by: yorhodes <[email protected]>
Co-authored-by: Yorke Rhodes <[email protected]>
Co-authored-by: Yorke Rhodes <[email protected]>
Co-authored-by: Asa Oines <[email protected]>
Co-authored-by: Kunal Arora <[email protected]>
Co-authored-by: Anett <[email protected]>
Co-authored-by: Yaqub Mahmoud <[email protected]>
Co-authored-by: Alex <[email protected]>
  • Loading branch information
18 people authored Jul 25, 2023
1 parent 04bdce0 commit 8c59839
Show file tree
Hide file tree
Showing 237 changed files with 27,312 additions and 1,080 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ jobs:
- name: Install Foundry
uses: onbjerg/foundry-toolchain@v1

- name: Free disk space
run: |
# Based on https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: rust cache
uses: Swatinem/rust-cache@v2
with:
Expand All @@ -52,7 +60,6 @@ jobs:
**/node_modules
.yarn/cache
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }}

- name: build test
run: cargo build --release --bin run-locally
- name: run test
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
shared-key: "test"
workspaces: |
./rust
- name: Free disk space
run: |
# Based on https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Run tests
run: cargo test

Expand All @@ -61,6 +68,13 @@ jobs:
shared-key: "lint"
workspaces: |
./rust
- name: Free disk space
run: |
# Based on https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Check
run: cargo check --all-features --all-targets
- name: Rustfmt
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ test_deploy.env
**/*.swp
**/*.swo

rust/vendor/
rust/tmp_db
rust/tmp.env
tmp.env
Expand Down
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@

*.Dockerfile
Dockerfile

Loading

0 comments on commit 8c59839

Please sign in to comment.