[1_19] moebius: bump to lolly 1.4.25 #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI on Ubuntu 22.04 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
linuxbuild: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc cmake libcurl4-openssl-dev | |
# Force xmake to a specific folder (for cache) | |
- name: Set xmake global dir | |
run: | | |
echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/.xmake-global" >> "${{ github.env }}" | |
- uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: v2.8.7 | |
- name: update repo | |
run: xmake repo -u | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: cache xmake | |
uses: actions/cache@v2 | |
with: | |
path: | | |
${{ env.XMAKE_GLOBALDIR }}/.xmake/packages | |
${{ github.workspace }}/build/.build_cache | |
key: ${{ runner.os }}-xmake-${{ hashFiles('**/xmake.lua') }} | |
# Force xmake to a specific folder (for cache) | |
- name: config | |
run: xmake config --yes -vD | |
- name: build | |
run: xmake build --yes -vD | |
- name: test | |
run: xmake test |