Skip to content

Commit

Permalink
ci: add ci for building QQMsg
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Lord committed Nov 10, 2023
1 parent bcca3b7 commit de488e0
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build_qqmsg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build QQMsg

on:
push:
branches:
- master

jobs:
test:
# Run a job for each of the specified target architectures:
strategy:
matrix:
arch:
- amd64
- amd64_x86
- amd64_arm64
name: default
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: Compile and run some C code (amd64)
shell: cmd
run: |
cl.exe QQMsg.cpp
dir
working-directory: QQMsg
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: QQMsg
path: QQMsg

0 comments on commit de488e0

Please sign in to comment.