configure: Use determistic timestamp from SOURCE_DATE_EPOCH if availa… #519
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: Windows | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-latest] | |
arch: [x64, x86] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: branch@dev | |
- name: Tests | |
run: | | |
xmake f -a ${{ matrix.arch }} | |
xmake run demo | |
xmake f -m debug -a ${{ matrix.arch }} | |
xmake -r | |
xmake run demo | |
xmake f --micro=y -a ${{ matrix.arch }} | |
xmake -r | |
xmake run demo | |
xmake f --small=y -m debug -a ${{ matrix.arch }} | |
xmake -r | |
xmake run demo |