aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release.yml28
1 files changed, 3 insertions, 25 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 55885c8..c6f2d84 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -25,31 +25,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- - name: Set up pkg-config for macOS
- if: matrix.os == 'macos-latest'
- run: |
- brew install pkg-config
- echo 'export PKG_CONFIG_ALLOW_CROSS=1' >> $GITHUB_ENV
- echo 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig' >> $GITHUB_ENV
- echo 'export PKG_CONFIG_SYSROOT_DIR=/usr/local' >> $GITHUB_ENV
-
- - name: Export environment variables for macOS
- if: matrix.os == 'macos-latest'
- run: |
- export PKG_CONFIG_ALLOW_CROSS=1
- export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
- export PKG_CONFIG_SYSROOT_DIR=/usr/local
-
- - name: Set up Rust
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- target: ${{ matrix.target }}
- override: true
-
- - name: Install dependencies
- run: sudo apt-get install -y libgtk-3-dev
- if: matrix.os == 'ubuntu-latest'
+ # - name: Install dependencies
+ # run: sudo apt-get install -y libgtk-3-dev
+ # if: matrix.os == 'ubuntu-latest'
- name: Build
run: cargo build --release --target ${{ matrix.target }}