* work * almost done with command protobuffers * done translating command data structures * mid transferring of every command to protobuff command * transferred plugin_command.rs, now moving on to shim.rs * plugin command working with protobufs * protobuffers in update * protobuf event tests * various TODOs and comments * fix zellij-tile * clean up prost deps * remove version mismatch error * fix panic * some cleanups * clean up event protobuffers * clean up command protobuffers * clean up various protobufs * refactor protobufs * update comments * some transformation fixes * use protobufs for workers * style(fmt): rustfmt * style(fmt): rustfmt * chore(build): add protoc * chore(build): authenticate protoc
60 lines
1.9 KiB
YAML
60 lines
1.9 KiB
YAML
name: End to End tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
test-e2e:
|
|
name: Build generic binary and run tests on it
|
|
runs-on: ubuntu-latest
|
|
environment: cachix
|
|
|
|
services:
|
|
ssh:
|
|
image: ghcr.io/linuxserver/openssh-server
|
|
env:
|
|
PUID: 1001
|
|
PGID: 1000
|
|
TZ: Europe/Vienna
|
|
PASSWORD_ACCESS: true
|
|
USER_PASSWORD: test
|
|
USER_NAME: test
|
|
ports:
|
|
- 2222:2222
|
|
options: -v ${{ github.workspace }}/target:/usr/src/zellij --name ssh
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Protoc
|
|
uses: arduino/setup-protoc@v2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Add WASM target
|
|
run: rustup target add wasm32-wasi
|
|
- name: Install musl-tools
|
|
run: sudo apt-get install -y --no-install-recommends musl-tools
|
|
- name: Add musl target
|
|
run: rustup target add x86_64-unknown-linux-musl
|
|
#run: cargo install --debug cargo-make
|
|
- uses: Swatinem/rust-cache@v2
|
|
# ensure the target folder exists, otherwise fixtures won't be in the right place
|
|
- name: Create target folder
|
|
run: mkdir -p ${{ github.workspace }}/target
|
|
# we copy this manually into the target folder instead of mounting it because
|
|
# github actions creates the service first, and if it has a mount that is part
|
|
# of your yet unchecked out code, you cannot checkout the code after the mount
|
|
- name: Copy fixtures folder to target
|
|
run: cp -r ${{ github.workspace }}/src/tests/fixtures ${{ github.workspace }}/target
|
|
- name: Restart ssh container
|
|
# we need to do this because otherwise the volume will not be mounted
|
|
# on the docker container, since it was created before the folder existed
|
|
uses: docker://docker
|
|
with:
|
|
args: docker restart ssh
|
|
- name: Test
|
|
run: cargo xtask ci e2e --test
|