mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-07 00:02:14 +08:00
commit 28e7e834f793b3c9ce05c47d41e15f8a1f49d30b Author: msojocs <jiyecafe@gmail.com> Date: Thu Apr 7 13:22:57 2022 +0800 fix: 7z commit 15f29ca887a51d7ecc783f8fddabf4e9cd3b5d21 Author: msojocs <jiyecafe@gmail.com> Date: Thu Apr 7 13:12:07 2022 +0800 update: flatpak commit 6f048bf662c2e2f64addd58d9039310a189af441 Author: msojocs <jiyecafe@gmail.com> Date: Thu Apr 7 12:26:45 2022 +0800 update commit 039de9c1b3dd53960dd7cb7fbdea6bf147481536 Author: msojocs <jiyecafe@gmail.com> Date: Thu Apr 7 12:16:18 2022 +0800 update: flatpak commit da0a56a89256a5b9792edd625666d06949ede55c Author: msojocs <jiyecafe@gmail.com> Date: Thu Apr 7 12:16:02 2022 +0800 fix: 可能的vscode-ripgrep/bin/rg 不存在问题 commit 9f7fd4ed39cc335966a095c9ab05931246282e3e Author: msojocs <jiyecafe@gmail.com> Date: Wed Apr 6 23:34:18 2022 +0800 update: flatpak commit b00dfb3ef7d46f0423fa916078c6de6506ad525f Author: msojocs <jiyecafe@gmail.com> Date: Wed Apr 6 23:20:48 2022 +0800 feat: nodegit compiler in parallel commit 4ff58b2fb854a874de86a5ec2be1846d8bb00f2c Author: msojocs <jiyecafe@gmail.com> Date: Wed Apr 6 13:54:21 2022 +0800 update: mirror commit 76aac0f6a5ecae98c28b77ffc016a79d530584b1 Author: msojocs <jiyecafe@gmail.com> Date: Sun Apr 3 23:05:16 2022 +0800 fix: build commit 3099858f56eab1db82c9965a60c323869898e37f Author: msojocs <jiyecafe@gmail.com> Date: Sun Apr 3 22:11:24 2022 +0800 update commit 150a944c026f14e6e4157ed84243560565a89818 Author: msojocs <jiyecafe@gmail.com> Date: Sat Mar 26 20:22:43 2022 +0800 test commit 6fa17ebca20f2980f08774c56a48dfa1b5ea6381 Author: msojocs <jiyecafe@gmail.com> Date: Sat Mar 26 19:05:35 2022 +0800 fix: deepin build commit 3c373a8f6fa765741c3a974d72833b3e240adb2a Author: msojocs <jiyecafe@gmail.com> Date: Sat Mar 26 18:06:43 2022 +0800 update: deepin build commit f29fa16289132b40ef1d85992600770cfd2ba298 Author: msojocs <jiyecafe@gmail.com> Date: Fri Mar 25 22:42:45 2022 +0800 使用debuild commit 324d866482c77a9b7bb4715eebed9c149af7b1d8 Author: msojocs <jiyecafe@gmail.com> Date: Wed Mar 23 09:35:12 2022 +0800 fix: krb5 commit e463415599a04fae282cb36e8a5d3ee2ebae2239 Author: msojocs <jiyecafe@gmail.com> Date: Tue Mar 22 22:58:52 2022 +0800 feat: flatpak commit 83677cba04e9d84a1ef12cfdeacb0f1e779b4e8c Merge: 7ff73e1 41ad887 Author: msojocs <jiyecafe@gmail.com> Date: Tue Mar 22 13:27:06 2022 +0800 Merge branch 'master' into flatpak commit 7ff73e13c795ef1e84b6a6f09fb9347de3600947 Author: msojocs <jiyecafe@gmail.com> Date: Fri Mar 11 22:44:35 2022 +0800 test
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Flatpak Verify
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches: [ master, dev]
|
|
pull_request:
|
|
branches: [ master ]
|
|
# # Allows you to run this workflow manually from the Actions tab
|
|
# workflow_dispatch:
|
|
|
|
jobs:
|
|
flatpak:
|
|
name: "Flatpak"
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:freedesktop-21.08
|
|
options: --privileged
|
|
strategy:
|
|
matrix:
|
|
arch: [x86_64]
|
|
# Don't fail the whole workflow if one architecture fails
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Test
|
|
run: |
|
|
cat /etc/issue
|
|
yum install -y p7zip p7zip-plugins
|
|
7z
|
|
# Docker is required by the docker/setup-qemu-action which enables emulation
|
|
- name: Install deps
|
|
run: |
|
|
dnf -y install docker
|
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4
|
|
with:
|
|
bundle: wechat-devtools.flatpak
|
|
manifest-path: io.github.msojocs.wechat-devtools.yml
|
|
cache-key: flatpak-builder-${{ github.sha }}
|
|
arch: ${{ matrix.arch }} |