11 Commits

Author SHA1 Message Date
Sergey
958d96a466 Update action.yml 2024-11-29 11:38:02 +03:00
Sergey
4e30b04faf Update Dockerfile 2024-11-29 11:32:38 +03:00
Sergey
1224e6843d Update action.yml 2024-11-29 11:14:55 +03:00
Sergey
6cd4c658a8 Update entrypoint.sh 2024-11-29 11:14:23 +03:00
Sergey
1eb2f650dc Update action.yml 2024-11-29 11:05:55 +03:00
Sergey
b1699044b1 Update entrypoint.sh 2024-11-29 11:04:53 +03:00
Sergey
8d48521d09 Update README.md 2024-07-29 09:43:23 +03:00
Sergey
5e909ae7d0 Merge pull request #4 from embedd-actions/arm-dev-src
Arm dev src
2023-10-27 00:01:53 +03:00
Sergey
bcd9a60294 Update README.md 2023-10-26 23:46:17 +03:00
Sergey
d022b3c43b Update action.yml 2023-10-26 23:45:44 +03:00
Sergey
e510152a0d Update Dockerfile 2023-10-26 23:45:27 +03:00
4 changed files with 7 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
FROM debian:stable-slim
ARG VERSION=11.3.rel1
ARG VERSION=12.3.rel1
RUN ARCH="$(dpkg --print-architecture)" && \
case $ARCH in \
@@ -16,6 +16,7 @@ RUN ARCH="$(dpkg --print-architecture)" && \
apt-get install \
--no-install-recommends \
make \
ninja-build \
cmake \
wget \
ca-certificates \

View File

@@ -4,7 +4,7 @@ Building arm-gcc projects
## Usage:
```
```yml
jobs:
build:
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- name: make
uses: embedd-actions/arm-gcc-ci@11.3.rel1
uses: embedd-actions/arm-gcc-ci@12.3.rel1
with:
command: make --directory Release all
@@ -24,4 +24,5 @@ jobs:
```
11.3.rel1
12.3.rel1
```

View File

@@ -10,7 +10,7 @@ inputs:
default: arm-none-eabi-gcc --version
runs:
using: 'docker'
image: 'docker://sergeyladanov/arm-gcc:11.3.rel1'
image: 'docker://sergeyladanov/arm-gcc:12.3.rel1'
args:
- ${{ inputs.command }}

View File

@@ -2,4 +2,4 @@
. /etc/bashrc
exec $@
exec bash -c "$@"