Skip to content

Commit

Permalink
Merge branch 'main' of github.com:geoapi-pt/main
Browse files Browse the repository at this point in the history
  • Loading branch information
jfoclpf committed May 25, 2024
2 parents 88f364a + 3d29c25 commit a3f9cc3
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 126 deletions.
104 changes: 0 additions & 104 deletions .github/workflows/docker.yml

This file was deleted.

84 changes: 62 additions & 22 deletions .github/workflows/main_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,66 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- name: Main checkout
uses: actions/checkout@v4
with:
path: main
- name: Checkout Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Checkout resources private repo
uses: actions/checkout@v4
with:
repository: geoapi-pt/resources
token: ${{ secrets.GH_PAT }}
path: resources
- name: List project root direcotory
run: ls ${GITHUB_WORKSPACE} -lh
- name: Install npm packages
run: |
cd ${GITHUB_WORKSPACE}/resources && npm ci
cd ${GITHUB_WORKSPACE}/main && npm ci
- name: Main Test
run: cd ${GITHUB_WORKSPACE}/main && npm test
- name: Check disk space
run: df . -h
- name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
echo "some directories deleted"
sudo apt install aptitude -y >/dev/null 2>&1
sudo aptitude purge aria2 ansible azure-cli shellcheck rpm xorriso zsync \
esl-erlang firefox gfortran-8 gfortran-9 google-chrome-stable \
google-cloud-sdk imagemagick \
libmagickcore-dev libmagickwand-dev libmagic-dev ant ant-optional kubectl \
mercurial apt-transport-https mono-complete libmysqlclient \
unixodbc-dev yarn chrpath libssl-dev libxft-dev \
libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev \
snmp pollinate libpq-dev postgresql-client powershell ruby-full \
sphinxsearch subversion mongodb-org azure-cli microsoft-edge-stable \
-y -f >/dev/null 2>&1
sudo aptitude purge google-cloud-sdk -f -y >/dev/null 2>&1
sudo aptitude purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo apt purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo aptitude purge '~n ^mysql' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^php' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^dotnet' -f -y >/dev/null 2>&1
sudo apt-get autoremove -y >/dev/null 2>&1
sudo apt-get autoclean -y >/dev/null 2>&1
echo "some packages purged"
- name: Check disk space
run: |
sudo dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -nr | head
df . -h
- name: Main checkout
uses: actions/checkout@v4
with:
path: main
- name: Checkout Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Checkout resources private repo
uses: actions/checkout@v4
with:
repository: geoapi-pt/resources
token: ${{ secrets.GH_PAT }}
path: resources
- name: Check project root direcotory and free extra space
run: |
ls ${GITHUB_WORKSPACE} -lh
du ${GITHUB_WORKSPACE} -h -d 1
df . -h
sudo rm -rf ${GITHUB_WORKSPACE}/main/.git
sudo rm -rf ${GITHUB_WORKSPACE}/resources/.git
df . -h
- name: Install npm packages
run: |
cd ${GITHUB_WORKSPACE}/resources && npm ci
cd ${GITHUB_WORKSPACE}/main && npm ci && npm run build-docs
- name: Main Test
run: cd ${GITHUB_WORKSPACE}/main && npm test

0 comments on commit a3f9cc3

Please sign in to comment.