diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index db1aef0..4c6c146 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -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 @@ -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 }} diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 13a86be..4be69d6 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,7 +15,7 @@ jobs: runs-on: self-hosted steps: - name: Fetch git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.6 with: path: website @@ -23,7 +23,10 @@ jobs: 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 diff --git a/public/docs/presentations/OpenAMP-Elevator-Pitch-2023-Q4.pdf b/public/docs/presentations/OpenAMP-Elevator-Pitch-2023-Q4.pdf new file mode 100644 index 0000000..21c29ec Binary files /dev/null and b/public/docs/presentations/OpenAMP-Elevator-Pitch-2023-Q4.pdf differ diff --git a/public/docs/presentations/OpenAMP-Elevator-Pitch-2024-Q1.pdf b/public/docs/presentations/OpenAMP-Elevator-Pitch-2024-Q1.pdf new file mode 100644 index 0000000..d2afc08 Binary files /dev/null and b/public/docs/presentations/OpenAMP-Elevator-Pitch-2024-Q1.pdf differ diff --git a/public/docs/rfps/OpenAMP_DocsRFP_2024.pdf b/public/docs/rfps/OpenAMP_DocsRFP_2024.pdf new file mode 100644 index 0000000..487725b Binary files /dev/null and b/public/docs/rfps/OpenAMP_DocsRFP_2024.pdf differ diff --git a/src/assets/images/content/Linaro-logo-white.png b/src/assets/images/content/Linaro-logo-white.png new file mode 100644 index 0000000..be6e8fb Binary files /dev/null and b/src/assets/images/content/Linaro-logo-white.png differ diff --git a/src/assets/images/content/linaro-logo.png b/src/assets/images/content/linaro-logo.png deleted file mode 100644 index d7346d9..0000000 Binary files a/src/assets/images/content/linaro-logo.png and /dev/null differ diff --git a/src/assets/images/members/Linaro-logo-black.png b/src/assets/images/members/Linaro-logo-black.png new file mode 100644 index 0000000..53d8b98 Binary files /dev/null and b/src/assets/images/members/Linaro-logo-black.png differ diff --git a/src/assets/images/members/linaro-logo.png b/src/assets/images/members/linaro-logo.png deleted file mode 100644 index d7346d9..0000000 Binary files a/src/assets/images/members/linaro-logo.png and /dev/null differ diff --git a/src/assets/linaro-logo.png b/src/assets/linaro-logo.png deleted file mode 100644 index d7346d9..0000000 Binary files a/src/assets/linaro-logo.png and /dev/null differ diff --git a/src/assets/logo.png b/src/assets/logo.png deleted file mode 100644 index 8c70e68..0000000 Binary files a/src/assets/logo.png and /dev/null differ diff --git a/src/components/Footer.astro b/src/components/Footer.astro index ccc396f..0a10351 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -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"); diff --git a/src/content/authors/linaro.yaml b/src/content/authors/linaro.yaml deleted file mode 100644 index fe70209..0000000 --- a/src/content/authors/linaro.yaml +++ /dev/null @@ -1,3 +0,0 @@ -name: Linaro -username: linaro -image: /assets/images/content/linaro-logo.png diff --git a/src/content/data/members.yml b/src/content/data/members.yml index 709dcd3..4d5144a 100644 --- a/src/content/data/members.yml +++ b/src/content/data/members.yml @@ -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 diff --git a/src/content/pages/homepage.md b/src/content/pages/homepage.md index 3eb5a6b..c312a47 100644 --- a/src/content/pages/homepage.md +++ b/src/content/pages/homepage.md @@ -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. diff --git a/src/content/tags/openamp.md b/src/content/tags/openamp.md index ef47e2e..37143d5 100644 --- a/src/content/tags/openamp.md +++ b/src/content/tags/openamp.md @@ -1,3 +1,3 @@ --- -name: OpenAPM +name: OpenAMP ---