Build and test (Yangtze, scheduled) #1168
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: Build and test (Yangtze, scheduled) | |
on: | |
schedule: | |
# run daily | |
- cron: '51 2 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Update apt cache | |
run: sudo apt-get update | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: 'release/yangtze/lcm' | |
- name: Check whether there are unlicensed packages | |
run: tools/license-check.sh | |
- name: Use ocaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: "4.08.1" | |
opam-repositories: | | |
xs-opam: "." | |
opam-disable-sandboxing: true | |
opam-pin: false | |
- name: Build xs-toolstack, test its dependencies | |
# opam install may ignore installing depexts sometimes | |
# OPAMCOLOR is set to "always" by default and it breaks piping | |
run: | | |
OPAMERRLOGLEN=10000 OPAMCOLOR=NEVER opam list -s --required-by xs-toolstack | xargs opam depext -tu | |
OPAMERRLOGLEN=10000 OPAMCOLOR=NEVER opam list -s --required-by xs-toolstack | xargs opam install -t | |
- name: Uninstall unversioned packages | |
# This should purge them from the cache, unversioned package have | |
# 'master' as its version | |
run: opam list | awk -F " " '$2 == "master" { print $1 }' | xargs opam uninstall |