Skip to content

Commit 5311f39

Browse files
authored
Update README.md to link to correct action
1 parent 7ec7008 commit 5311f39

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# GitHub Action: eessi/github-action-eessi
2-
[![ubuntu](https://github.com/eessi/github-action-eessi/workflows/ubuntu/badge.svg)](https://github.com/eessi/github-action-eessi/actions?query=workflow%3Aubuntu) <!---[![macOS](https://github.com/eessi/github-action-eessi/workflows/macOS/badge.svg)](https://github.com/eessi/github-action-eessi/actions?query=workflow%3AmacOS)-->
2+
[![ubuntu](https://github.com/eessi/github-action-eessi/workflows/ubuntu-minimal_usage/badge.svg)](https://github.com/eessi/github-action-eessi/actions?query=workflow%3Aubuntu-minimal_usage) <!---[![macOS](https://github.com/eessi/github-action-eessi/workflows/macOS/badge.svg)](https://github.com/eessi/github-action-eessi/actions?query=workflow%3AmacOS)-->
33

44

55
This GitHub Action sets up the [European Environment for Scientific Software Installations](https://eessi.github.io/docs/) (EESSI) for use in GitHub Workflows. EESSI is like a streaming service for software installations: you have access to a large catalogue of software provided by EESSI, however the installations are only cached on your system once you try to access them.
@@ -27,6 +27,23 @@ jobs:
2727
module avail
2828
shell: bash
2929
```
30+
and one can also easily create a workflow that will run on both `x86_64` and `Arm` architectures:
31+
```yaml
32+
jobs:
33+
ubuntu-minimal:
34+
runs-on: ${{ matrix.os }}
35+
strategy:
36+
matrix:
37+
include:
38+
- os: ubuntu-24.04-arm
39+
- os: ubuntu-24.04
40+
steps:
41+
- uses: eessi/github-action-eessi@v3
42+
- name: Test EESSI
43+
run: |
44+
module avail
45+
shell: bash
46+
```
3047
<!---
3148
We are working on getting the Action to also work with runners of type `macos-latest`. A minimal example of usage on `macos-latest` is:
3249
```yaml

0 commit comments

Comments
 (0)