do not do more thing in cc-env.sh #225
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: Nore | |
on: | |
pull_request: | |
branches: | |
- edge | |
push: | |
branches: | |
- edge | |
jobs: | |
Linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- CC: "gcc" | |
- CC: "clang" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 # checkout history and tags | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install clang | |
- name: Test Nore via CC=${{ matrix.CC }} | |
env: | |
_INSIDE_CI_: github | |
run: | | |
CC=${{ matrix.CC }} ./test.sh | |
MacOS: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
include: | |
- CC: "clang" | |
- CC: "gcc" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 # checkout history and tags | |
- name: Test Nore via CC=${{ matrix.CC }} | |
env: | |
_INSIDE_CI_: github | |
run: | | |
CC=${{ matrix.CC }} ./test.sh | |
Windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
include: | |
- CC: "cl" | |
- CC: "gcc" | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 # checkout history and tags | |
- name: Install Dependencies | |
uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
git | |
make | |
mingw-w64-x86_64-gcc | |
- name: Test Nore via CC=${{ matrix.CC }} | |
env: | |
_INSIDE_CI_: github | |
run: | | |
CC=${{ matrix.CC }} ./test.sh | |
# eof |