Compare commits
2 commits
314d3046ad
...
114ba5e7ea
Author | SHA1 | Date | |
---|---|---|---|
114ba5e7ea | |||
ff01182e72 |
3 changed files with 11 additions and 17 deletions
|
@ -8,23 +8,23 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
toolchain:
|
||||
- stable
|
||||
- nightly
|
||||
- name: stable
|
||||
- name: nightly
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Test ${{ toolchain}}
|
||||
- name: Test
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: ${{toolchain}} cargo test
|
||||
args: ${{ matrix.toolchain.name }} cargo test
|
||||
|
||||
- name: Build ${{ toolchain }}
|
||||
- name: Build
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: ${{ toolchain }} cargo build
|
||||
args: ${{ matrix.toolchain.name }} cargo build
|
||||
|
||||
- name: Run ${{ toolchain }}
|
||||
- name: Run
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: ${{ toolchain }} cargo run
|
||||
args: ${{ matrix.toolchain.name }} cargo run
|
||||
|
|
|
@ -9,14 +9,7 @@ FROM docker.io/rust:1.81.0-slim-bookworm
|
|||
# git - git
|
||||
RUN apt-get update \
|
||||
&& \
|
||||
apt-get install -y \
|
||||
--no-install-recommends \
|
||||
nodejs=18.19.0+dfsg-6~deb12u2 \
|
||||
curl=7.88.1-10+deb12u7 \
|
||||
pkg-config=1.8.1-1 \
|
||||
libssl-dev=3.0.14-1~deb12u2 \
|
||||
libdbus-1-dev=1.14.10-1~deb12u1 \
|
||||
git=1:2.39.2-1.1 \
|
||||
apt-get satisfy -y "nodejs (>=18.19.0) curl (>=7.88.1) pkg-config (>=1.8.1) libssl-dev (>=3.0.14) git (>=2.39.2)" \
|
||||
&& \
|
||||
rm -r /var/lib/apt/lists/*
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
echo "Environment:"
|
||||
set
|
||||
set -e
|
||||
|
||||
echo "INPUT_ARGS: ${INPUT_ARGS}"
|
||||
|
|
Loading…
Reference in a new issue