-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (43 loc) · 1.43 KB
/
latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Latest
on:
push:
branches:
- "master"
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
# targets: x86_64-unknown-linux-musl
- run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- run: |
cargo build --release --manifest-path ./adana-script/dynamic_lib/example_lib_src/Cargo.toml
rm ./adana-script/dynamic_lib/libplugin_example.so
cp ./adana-script/dynamic_lib/example_lib_src/target/release/libplugin_example.so ./adana-script/dynamic_lib/libplugin_example.so
- run: cargo test #--verbose -- --nocapture
- run: wasm-pack test --headless --firefox ./adana-script-wasm
- run: wasm-pack test --headless --chrome ./adana-script-wasm
docker:
needs: test
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: nbittich/adana:latest