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

Build Container for Server #81

Open
esoterra opened this issue Mar 22, 2023 · 1 comment
Open

Build Container for Server #81

esoterra opened this issue Mar 22, 2023 · 1 comment

Comments

@esoterra
Copy link
Collaborator

Build a container for the server in our CD pipeline so that it can be set up and run more easily.

@dierbei
Copy link

dierbei commented Jun 25, 2023

jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update stable --no-self-update && rustup default stable && rustup target add wasm32-wasi && rustup target add wasm32-unknown-unknown
shell: bash
- name: Install Protobuf Compiler
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build all crates
run: cargo build --all
- name: Run all tests
run: cargo test --all

Excuse me, is it the job fragment under the main.yml file, adding a build fragment similar to test?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants