File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 31
31
run : cargo build --verbose --all
32
32
- name : cargo test
33
33
run : cargo test --verbose --all
34
+ docker_build :
35
+ name : docker build
36
+ runs-on : self-hosted
37
+ steps :
38
+ - uses : actions/checkout@v3
39
+ - name : Start Docker Daemon
40
+ run : |
41
+ dockerd &
42
+ - name : Wait for Docker Daemon to start
43
+ run : |
44
+ until docker info; do
45
+ echo "Waiting for Docker daemon to start..."
46
+ sleep 1
47
+ done
48
+ - name : Build docker image
49
+ run : docker compose -f docker/docker-compose.yml build
Original file line number Diff line number Diff line change 27
27
cmake \
28
28
make \
29
29
libssl-dev \
30
- pkg-config
30
+ pkg-config \
31
+ docker-compose-plugin
31
32
32
33
RUN \
33
34
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $RUSTC_VERSION
Original file line number Diff line number Diff line change 37
37
RUN \
38
38
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $RUSTC_VERSION
39
39
RUN $CARGO_HOME/bin/rustup target add wasm32-unknown-unknown
40
+ RUN $CARGO_HOME/bin/rustup component add rust-src
40
41
41
42
WORKDIR /sugondat
42
43
COPY . /sugondat
You can’t perform that action at this time.
0 commit comments