Skip to content

Commit

Permalink
Merge pull request #20 from elijahr/container-name
Browse files Browse the repository at this point in the history
Use workflow in container name
  • Loading branch information
uraimo committed Sep 13, 2020
2 parents 8ba35c5 + 06ac2bb commit cd5f294
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![](https://github.com/uraimo/run-on-arch-action/workflows/test/badge.svg)](https://github.com/uraimo/run-on-arch-action)

A GitHub Action that executes commands on non-amd64 CPU architecture (armv6, armv7, aarch64, s390x, ppc64le).
A GitHub Action that executes commands on non-x86 CPU architecture (armv6, armv7, aarch64, s390x, ppc64le).

## Usage

Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
name: Build on ubuntu-18.04 armv7
steps:
- uses: actions/checkout@v2.1.0
- uses: uraimo/run-on-arch-action@v2.0.2
- uses: uraimo/run-on-arch-action@v2.0.5
name: Run commands
id: runcmd
with:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
steps:
- uses: actions/checkout@v2.1.0
- uses: uraimo/run-on-arch-action@v2.0.2
- uses: uraimo/run-on-arch-action@v2.0.5
name: Build artifact
id: build
with:
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "run-on-arch",
"version": "2.0.2",
"version": "2.0.5",
"description": "Multi architecture support for GitHub Actions",
"author": "Umberto Raimondi, Elijah Shaw-Rutschman",
"license": "BSD-3-Clause",
Expand Down
7 changes: 5 additions & 2 deletions src/run-on-arch.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,11 @@ async function main() {
});
}

// Generate a container name slug unique to this arch/distro combo
const containerName = `run-on-arch-${slug(env.GITHUB_REPOSITORY)}-${slug(arch)}-${slug(distro)}`;
// Generate a container name slug unique to this workflow
const containerName = slug([
'run-on-arch', env.GITHUB_REPOSITORY, env.GITHUB_WORKFLOW,
arch, distro,
].join('-'));

console.log('Configuring Docker for multi-architecture support')
await exec(
Expand Down
2 changes: 1 addition & 1 deletion src/run-on-arch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ quiet () {
}

install_deps () {
# Install support for non-amd64 emulation in Docker via QEMU.
# Install support for non-x86 emulation in Docker via QEMU.
# Platforms: linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x,
# linux/386, linux/arm/v7, linux/arm/v6
sudo apt-get update -q -y
Expand Down

0 comments on commit cd5f294

Please sign in to comment.