summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2021-06-21 10:45:18 +0200
committerGitHub <noreply@github.com>2021-06-21 10:45:18 +0200
commit3313634fe969a69925a5d32445ba14a5f79e5d87 (patch)
tree778f1badfeed4a26d58e3413180f41629134d35a /.github
parent07ad2f54eaf146e3e4ff88c943ba4cca236bbc9b (diff)
Add e2e tests (#582)
* feature(tests): e2e tests * chore(build): github action * chore(build): fix workflow * chore(build): fix workflow * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * work * working * working * working * bring back the proper errors * make e2e flow run properly * style(fmt): make rustfmt happy * style(fmt): make rustfmt happy * run on everything just to test the workflow * bring back running behaviour on workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/e2e.yml49
1 files changed, 49 insertions, 0 deletions
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
new file mode 100644
index 000000000..a81d4ae61
--- /dev/null
+++ b/.github/workflows/e2e.yml
@@ -0,0 +1,49 @@
+name: End to End tests
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+env:
+ CARGO_TERM_COLOR: always
+
+jobs:
+ test:
+ name: Bulild generic binary and run tests on it
+ runs-on: ubuntu-latest
+
+ services:
+ ssh:
+ image: ghcr.io/linuxserver/openssh-server
+ env:
+ PUID: 1000
+ 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@v2
+ - 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
+ - name: Install cargo-make
+ run: cargo install --debug cargo-make
+ - name: Build asset
+ run: cargo make build-e2e
+ - 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 make e2e-test