Auto-update aws-c-s3 to v0.12.3 #23588
Workflow file for this run
This file contains hidden or 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: FreeBSD | |
| on: | |
| pull_request: | |
| branches: | |
| - dev | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| kind: [static, shared] | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-FreeBSD-${{ matrix.kind }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Tests | |
| uses: vmactions/freebsd-vm@v1 | |
| with: | |
| usesh: true | |
| release: "14.1" | |
| sync: sshfs | |
| mem: 12288 | |
| copyback: false | |
| prepare: | | |
| export ASSUME_ALWAYS_YES=yes | |
| export IGNORE_OSVERSION=yes | |
| pkg bootstrap -f | |
| pkg update -f | |
| # Upgrade pre-installed VM packages so their libraries match the 'latest' repo | |
| pkg upgrade -y | |
| pkg install -y git curl unzip gmake llvm gsed bash perl5 openssl 7-zip coreutils | |
| run: | | |
| git config --global --add safe.directory `pwd` | |
| git clone --recurse-submodules https://github.com/xmake-io/xmake.git /tmp/xmake -b dev | |
| cd /tmp/xmake | |
| ./configure | |
| gmake -j4 | |
| gmake install | |
| export XMAKE_ROOT=y | |
| cd - | |
| xmake l ./scripts/test.lua -D -k ${{ matrix.kind }} -vD |