Skip to content

Commit

Permalink
Merge branch 'main' into update_member_logos
Browse files Browse the repository at this point in the history
  • Loading branch information
nathalie-ckc authored Jul 22, 2024
2 parents d71307d + 3f1da01 commit 1cd4091
Show file tree
Hide file tree
Showing 16 changed files with 15 additions and 12 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Fetch git repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.6
with:
fetch-depth: 0
path: website
Expand All @@ -28,12 +28,15 @@ jobs:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Merge test branch
uses: linaro-its/merge-test-branch@v2.6
uses: linaro-its/merge-test-branch@v2.7
with:
path: website

- name: Build site
run: cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
run: |
source ~/.nvm/nvm.sh
nvm use 20
cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
env:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ jobs:
runs-on: self-hosted
steps:
- name: Fetch git repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.6
with:
path: website

- name: Initialise environment
run: cat "$GITHUB_WORKSPACE/website/.github-env-${GITHUB_REF##*/}" >> $GITHUB_ENV

- name: Build site
run: cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
run: |
source ~/.nvm/nvm.sh
nvm use 20
cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
- name: Check links
run: /srv/github-action-scripts/check-links.sh ${{ github.workspace }}/website/dist
Expand Down
Binary file not shown.
Binary file not shown.
Binary file added public/docs/rfps/OpenAMP_DocsRFP_2024.pdf
Binary file not shown.
Binary file added src/assets/images/content/Linaro-logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/content/linaro-logo.png
Binary file not shown.
Binary file added src/assets/images/members/Linaro-logo-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/members/linaro-logo.png
Binary file not shown.
Binary file removed src/assets/linaro-logo.png
Binary file not shown.
Binary file removed src/assets/logo.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { getEntry } from "astro:content";
import { Image } from "astro:assets";
import LinaroLogo from "../assets/logo.png";
import LinaroLogo from "../assets/images/content/Linaro-logo-white.png";
import Icon from "astro-icon";
const footer = await getEntry("data", "footer");
Expand Down
3 changes: 0 additions & 3 deletions src/content/authors/linaro.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion src/content/data/members.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
alt: Arm Logo
url: https://www.arm.com/
- name: Linaro Logo
image: ../../assets/images/members/linaro-logo.png
image: ../../assets/images/members/Linaro-logo-black.png
alt: Linaro Logo
url: https://www.linaro.org/
- name: Nordic Logo
Expand Down
2 changes: 1 addition & 1 deletion src/content/pages/homepage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ SoCs (System on a Chip) are becoming more heterogeneous, with multiple processor

OpenAMP (Open Asymmetric Multi-Processing) is a framework providing the software components needed to enable the development of software applications for AMP systems. It allows operating systems to interact within a broad range of complex homogeneous and heterogeneous architectures and allows asymmetric multiprocessing applications to leverage parallelism offered by the multicore configuration.

[This presentation](/docs/presentations/OpenAMP-Elevator-Pitch-2022-Q1.pdf) gives some brief details about OpenAMP.
[This presentation](/docs/presentations/OpenAMP-Elevator-Pitch-2024-Q1.pdf) gives some brief details about OpenAMP.
2 changes: 1 addition & 1 deletion src/content/tags/openamp.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
name: OpenAPM
name: OpenAMP
---

0 comments on commit 1cd4091

Please sign in to comment.